/GE[[string]]
The /GE option gives you control over the entry/exit code that the compiler produces for windows functions. It can only be used with the /GA and the /GD options. The string argument, which cannot be separated from /GE by a space, is one or more letters, with no intervening spaces, from the following table:
Letter | Optimizing Procedure |
/GEr | Generates real-mode entry/exit code: /Gw code for functions marked as __export and /GW code for all other far functions. The /GEr option cannot be combined with any other /GE option. |
/GEm | Specify generation of code to mark the far frame. |
/GEf | Treat all far functions as if they were explicitly marked as __export. |
/GEa, /GEd, /GEs | Load DS from AX (a), DGROUP (d), or SS (s). Specify only one letter. |
/GEe | Force emission of linker EXPDEF records. |