Changeset 204 in vbox for trunk/src/VBox/Runtime/r3/win32/uuid-win32.cpp
- Timestamp:
- Jan 21, 2007 9:57:51 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win32/uuid-win32.cpp
r1 r204 39 39 * @param pUuid Where to store generated uuid. 40 40 */ 41 RT R3DECL(int) RTUuidCreate(PRTUUID pUuid)41 RTDECL(int) RTUuidCreate(PRTUUID pUuid) 42 42 { 43 43 /* check params */ … … 62 62 * @param pUuid Where to store generated null uuid. 63 63 */ 64 RT R3DECL(int) RTUuidClear(PRTUUID pUuid)64 RTDECL(int) RTUuidClear(PRTUUID pUuid) 65 65 { 66 66 /* check params */ … … 80 80 * @param pUuid uuid to check. 81 81 */ 82 RT R3DECL(int) RTUuidIsNull(PCRTUUID pUuid)82 RTDECL(int) RTUuidIsNull(PCRTUUID pUuid) 83 83 { 84 84 /* check params */ … … 100 100 * @param pUuid2 Second value to compare. 101 101 */ 102 RT R3DECL(int) RTUuidCompare(PCRTUUID pUuid1, PCRTUUID pUuid2)102 RTDECL(int) RTUuidCompare(PCRTUUID pUuid1, PCRTUUID pUuid2) 103 103 { 104 104 /* check params */ … … 121 121 * @param cchString pszString buffer length, must be >= RTUUID_STR_LENGTH. 122 122 */ 123 RT R3DECL(int) RTUuidToStr(PCRTUUID pUuid, char *pszString, unsigned cchString)123 RTDECL(int) RTUuidToStr(PCRTUUID pUuid, char *pszString, unsigned cchString) 124 124 { 125 125 /* check params */ … … 177 177 * @param pszString String with UUID text data. 178 178 */ 179 RT R3DECL(int) RTUuidFromStr(PRTUUID pUuid, const char *pszString)179 RTDECL(int) RTUuidFromStr(PRTUUID pUuid, const char *pszString) 180 180 { 181 181 /* check params */
Note:
See TracChangeset
for help on using the changeset viewer.