Compiler related Procedure Extensions
Posted: Sat Sep 23, 2006 7:03 am
Afaik, there are some compiler related procedure extensions, like "_MMX" "_Unicode" ... Is there any way to use an includefile like following small example and using the specific procedure named Test() instead using Test(), Test_MMX() and so on? Or does this only work for compiled libs? o_O
Code: Select all
Procedure Test()
ProcedureReturn 1
EndProcedure
Procedure Test_Unicode()
ProcedureReturn 2
EndProcedure
Procedure Test_MMX()
ProcedureReturn 3
EndProcedure
Debug Test()