Changeset 204 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Jan 21, 2007 9:57:51 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 17688
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/generic/uuid-generic.cpp
r129 r204 40 40 * @param pUuid Where to store generated uuid. 41 41 */ 42 RT R3DECL(int) RTUuidCreate(PRTUUID pUuid)42 RTDECL(int) RTUuidCreate(PRTUUID pUuid) 43 43 { 44 44 /* validate input. */ … … 66 66 * @param pUuid Where to store generated null uuid. 67 67 */ 68 RT R3DECL(int) RTUuidClear(PRTUUID pUuid)68 RTDECL(int) RTUuidClear(PRTUUID pUuid) 69 69 { 70 70 AssertReturn(pUuid, VERR_INVALID_PARAMETER); … … 81 81 * @param pUuid uuid to check. 82 82 */ 83 RT R3DECL(int) RTUuidIsNull(PCRTUUID pUuid)83 RTDECL(int) RTUuidIsNull(PCRTUUID pUuid) 84 84 { 85 85 AssertReturn(pUuid, VERR_INVALID_PARAMETER); … … 96 96 * @param pUuid2 Second value to compare. 97 97 */ 98 RT R3DECL(int) RTUuidCompare(PCRTUUID pUuid1, PCRTUUID pUuid2)98 RTDECL(int) RTUuidCompare(PCRTUUID pUuid1, PCRTUUID pUuid2) 99 99 { 100 100 /* … … 143 143 * @param cchString pszString buffer length, must be >= RTUUID_STR_LENGTH. 144 144 */ 145 RT R3DECL(int) RTUuidToStr(PCRTUUID pUuid, char *pszString, unsigned cchString)145 RTDECL(int) RTUuidToStr(PCRTUUID pUuid, char *pszString, unsigned cchString) 146 146 { 147 147 /* validate parameters */ … … 218 218 * @param pszString String with UUID text data. 219 219 */ 220 RT R3DECL(int) RTUuidFromStr(PRTUUID pUuid, const char *pszString)220 RTDECL(int) RTUuidFromStr(PRTUUID pUuid, const char *pszString) 221 221 { 222 222 /* 0xff if not a hex number, otherwise the value. (Assumes UTF-8 encoded strings.) */ -
trunk/src/VBox/Runtime/r3/linux/uuid-linux.cpp
r1 r204 73 73 * @param pUuid Where to store generated uuid. 74 74 */ 75 RT R3DECL(int) RTUuidCreate(PRTUUID pUuid)75 RTDECL(int) RTUuidCreate(PRTUUID pUuid) 76 76 { 77 77 /* check params */ … … 94 94 * @param pUuid Where to store generated null uuid. 95 95 */ 96 RT R3DECL(int) RTUuidClear(PRTUUID pUuid)96 RTDECL(int) RTUuidClear(PRTUUID pUuid) 97 97 { 98 98 /* check params */ … … 114 114 * @param pUuid uuid to check. 115 115 */ 116 RT R3DECL(int) RTUuidIsNull(PCRTUUID pUuid)116 RTDECL(int) RTUuidIsNull(PCRTUUID pUuid) 117 117 { 118 118 /* check params */ … … 133 133 * @param pUuid2 Second value to compare. 134 134 */ 135 RT R3DECL(int) RTUuidCompare(PCRTUUID pUuid1, PCRTUUID pUuid2)135 RTDECL(int) RTUuidCompare(PCRTUUID pUuid1, PCRTUUID pUuid2) 136 136 { 137 137 /* check params */ … … 153 153 * @param cchString pszString buffer length, must be >= RTUUID_STR_LENGTH. 154 154 */ 155 RT R3DECL(int) RTUuidToStr(PCRTUUID pUuid, char *pszString, unsigned cchString)155 RTDECL(int) RTUuidToStr(PCRTUUID pUuid, char *pszString, unsigned cchString) 156 156 { 157 157 /* 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 */ -
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.