Hi,
i have some sort of Problem.
I did some workaround to bypass DEP on Windowssystem that activate this by default for a Programm i made. At the beginning this was inside a dll and so it worked as expected:
//Programms and dlls with such namend sections deactivate DEP ;-)
#pragma data_seg(".sforce")
int Status = 0; // initialize data!
#pragma data_seg()
#pragma comment(linker, "/SECTION:.sforce,RWS")
But now i want the same workaround into my executable but pellesC refuses to add the section:
POLINK: warning: /SECTION:.sforce ignored; section is missing.
How can i bypass this Linkerproblem ?
Greetings
Seltsamuel