Changeset 83033 in vbox for trunk/include/VBox
- Timestamp:
- Feb 10, 2020 1:40:54 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/sup.h
r82968 r83033 1184 1184 /** The hardened DLL has a "TrustedError" function (see FNSUPTRUSTEDERROR). */ 1185 1185 #define SUPSECMAIN_FLAGS_TRUSTED_ERROR RT_BIT_32(1) 1186 /** Hack for making VirtualBoxVM use VirtualBox.dylib on Mac OS X. */ 1186 /** Hack for making VirtualBoxVM use VirtualBox.dylib on Mac OS X. 1187 * @note Not used since 6.0 */ 1187 1188 #define SUPSECMAIN_FLAGS_OSX_VM_APP RT_BIT_32(2) 1188 1189 /** Program binary location mask. */ 1189 #define SUPSECMAIN_FLAGS_LOC_MASK UINT32_C(0x000000 10)1190 #define SUPSECMAIN_FLAGS_LOC_MASK UINT32_C(0x00000030) 1190 1191 /** Default binary location is the application binary directory. Does 1191 1192 * not need to be given explicitly (it's 0). */ … … 1194 1195 * default application binary directory. */ 1195 1196 #define SUPSECMAIN_FLAGS_LOC_TESTCASE UINT32_C(0x00000010) 1196 /** The first process. */ 1197 #define SUPSECMAIN_FLAGS_FIRST_PROCESS UINT32_C(0x00000020) 1197 /** The binary is located in a nested application bundle under Resources/ in the 1198 * main Mac OS X application (think Resources/VirtualBoxVM.app). */ 1199 #define SUPSECMAIN_FLAGS_LOC_OSX_HLP_APP UINT32_C(0x00000020) 1200 /** The first process. 1201 * @internal */ 1202 #define SUPSECMAIN_FLAGS_FIRST_PROCESS UINT32_C(0x00000100) 1198 1203 /** @} */ 1199 1204
Note:
See TracChangeset
for help on using the changeset viewer.