Changeset 25961 in vbox for trunk/include
- Timestamp:
- Jan 21, 2010 2:19:12 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/uuid.h
r25645 r25961 99 99 * @returns 0 if eq, < 0 or > 0. 100 100 * @param pUuid1 First value to compare. NULL is not allowed. 101 * @param pszString 101 * @param pszString2 The 2nd UUID in string form. NULL or malformed 102 102 * string is not permitted. 103 103 */ 104 RTDECL(int) RTUuidCompareStr(PCRTUUID pUuid1, const char *pszString); 104 RTDECL(int) RTUuidCompareStr(PCRTUUID pUuid1, const char *pszString2); 105 106 /** 107 * Compares two UUID strings. 108 * 109 * @returns 0 if eq, < 0 or > 0. 110 * @param pszString1 The 1st UUID in string from. NULL or malformed 111 * string is not permitted. 112 * @param pszString2 The 2nd UUID in string form. NULL or malformed 113 * string is not permitted. 114 */ 115 RTDECL(int) RTUuidCompare2Strs(const char *pszString1, const char *pszString2); 105 116 106 117 /**
Note:
See TracChangeset
for help on using the changeset viewer.