How to set IMAGE_DLLCHARACTERISTICS_NX_COMPAT bit to make DLL DEP compatible with VC 6.0 compiler
Windows API
1
Posts
1
Posters
0
Views
1
Watching
-
Hello Friends, I am having a c++ ATL DLL built in VC 6.0 And Vista's DEP blocks it, As I found that we can set the NXCOMPAT bit (IMAGE_DLLCHARACTERISTICS_NX_COMPAT) to mark it DEP compatible so that Vista DEP will allow it to run. by following command: (as post build step) editbin.exe /NXCOMPAT but I want to do the same in VC 6.0, and we dont have editbin command or NXCOMPAT bit in VC 6. It's in Visual Studio 2005 and later versions. Kindly tell me how to do the same as there must be some way out other than this command so that DEP will not block my DLL built in older vc++ 6 compiler. Please Help!!!
dolly, N,IN