Native Apps
-
I'm running VC++ Express .Net 2005, and i'm trying to compile an application with the native subsystem. I am getting a linker error reading "Unresolved external symbol _NtProcessStartup. I have tried preprocessor definitions and defining it as a function, but nothing has worked. The symbol isn't in any library. Can anyone help? (This is actually from the General Discussion board, but someone advised me to put it here.) __________________________________________ Let's push Satan
-
I'm running VC++ Express .Net 2005, and i'm trying to compile an application with the native subsystem. I am getting a linker error reading "Unresolved external symbol _NtProcessStartup. I have tried preprocessor definitions and defining it as a function, but nothing has worked. The symbol isn't in any library. Can anyone help? (This is actually from the General Discussion board, but someone advised me to put it here.) __________________________________________ Let's push Satan
EntryPoint[^]. You have to check your linker options, as: /SUBSYSTEM:NATIVE /DRIVER:WDM –entry:NtProcessStartup
Maxwell Chen