X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fsystemd%2Fsd-id128.h;h=7d5e6c440e3567a1f877ccec3be2cf878d0d7878;hp=d835cf47688671fce90dff0936267c5ea87ec335;hb=ab060556a9e1ebb2744719a29985e40919101a22;hpb=81527be142678057215665be66e4b3c8306a7ab3 diff --git a/src/systemd/sd-id128.h b/src/systemd/sd-id128.h index d835cf476..7d5e6c440 100644 --- a/src/systemd/sd-id128.h +++ b/src/systemd/sd-id128.h @@ -9,16 +9,16 @@ Copyright 2011 Lennart Poettering systemd is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or + under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. systemd is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + Lesser General Public License for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the GNU Lesser General Public License along with systemd; If not, see . ***/ @@ -26,6 +26,12 @@ #include #include +#ifdef __cplusplus +extern "C" { +#endif + +/* 128 Bit ID APIs. See sd-id128(3) for more information. */ + typedef union sd_id128 sd_id128_t; union sd_id128 { @@ -39,8 +45,6 @@ int sd_id128_from_string(const char s[33], sd_id128_t *ret); int sd_id128_randomize(sd_id128_t *ret); -sd_id128_t sd_id128_make_v4_uuid(sd_id128_t id); - int sd_id128_get_machine(sd_id128_t *ret); int sd_id128_get_boot(sd_id128_t *ret); @@ -60,4 +64,8 @@ static inline bool sd_id128_equal(sd_id128_t a, sd_id128_t b) { return memcmp(&a, &b, 16) == 0; } +#ifdef __cplusplus +} +#endif + #endif