Changeset 93260 in vbox for trunk/src/VBox/Runtime/nt
- Timestamp:
- Jan 17, 2022 9:54:11 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 149322
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/nt/NtProcessStartup-stub.cpp
r93251 r93260 32 32 33 33 34 /** 35 * This is the entrypoint the linker picks, however it is never called for 36 * ring-0 binaries. 37 */ 34 38 extern "C" void __cdecl NtProcessStartup(void *pvIgnored); 35 39 extern "C" void __cdecl NtProcessStartup(void *pvIgnored) … … 41 45 42 46 #ifdef IN_RING0 43 extern "C" long DriverEntry(void *pvDrvObjIgn, void *pvRegPathIgn) 47 /** 48 * This dummy entry point is required for using BufferOverflowK.lib and 49 * /guard:cf and /GS. It is never called. 50 */ 51 extern "C" long __stdcall DriverEntry(void *pvDrvObjIgn, void *pvRegPathIgn); 52 extern "C" long __stdcall DriverEntry(void *pvDrvObjIgn, void *pvRegPathIgn) 44 53 { 45 54 ASMBreakpoint();
Note:
See TracChangeset
for help on using the changeset viewer.