Changeset 85929 in vbox for trunk/include/VBox
- Timestamp:
- Aug 28, 2020 2:40:55 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 140122
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/com/Guid.h
r82968 r85929 324 324 bool operator<(const RTUUID &guid) const { return ::RTUuidCompare(&mUuid, &guid) < 0; } 325 325 326 /** Compare with a UUID string representation. 327 * @note Not an operator as that could lead to confusion. */ 328 bool equalsString(const char *pszUuid2) const { return ::RTUuidCompareStr(&mUuid, pszUuid2) == 0; } 329 326 330 /** 327 331 * To directly copy the contents to a GUID, or for passing it as an input -
trunk/include/VBox/log.h
r85841 r85929 477 477 /** Main group, IHost. */ 478 478 LOG_GROUP_MAIN_HOST, 479 /** Main group, IHostDrive. */ 480 LOG_GROUP_MAIN_HOSTDRIVE, 481 /** Main group, IHostDriveList. */ 482 LOG_GROUP_MAIN_HOSTDRIVELIST, 483 /** Main group, IHostDrivePartition. */ 484 LOG_GROUP_MAIN_HOSTDRIVEPARTITION, 479 485 /** Main group, IHostNetworkInterface. */ 480 486 LOG_GROUP_MAIN_HOSTNETWORKINTERFACE, … … 981 987 "MAIN_GUESTSESSIONEVENT", \ 982 988 "MAIN_HOST", \ 989 "MAIN_HOSTDRIVE", \ 990 "MAIN_HOSTDRIVELIST", \ 991 "MAIN_HOSTDRIVEPARTITION", \ 983 992 "MAIN_HOSTNETWORKINTERFACE", \ 984 993 "MAIN_HOSTUPDATE", \
Note:
See TracChangeset
for help on using the changeset viewer.