From: <hg...@ya...> - 2003-11-20 14:59:05
|
Ok, I am not sure, but I use a 'mechanism' that let me know if a function is internal to the file, or is external. for example I use: def Wnd, 4 and do: invoke Wnd, [.x],[.y],[.z], [.k] and will be expanded some like push dword [.k] ... call Wnd and if I do this: invoke MessageBox, NULL, str, title, MB_OK will be some like: push dword MB_OK ... extern MessageBox call [MessageBox] The trick is that def, make(or define) a Wnd_internal or some like that, then invoke check for see if is definied, in the other case is external function. What about to use a %ifdef and %ifid ??? I dont understand the porpuose of if used ... what is the objetive??? :S ;) Nice day or night. --------------------------------- Do You Yahoo!? Yahoo! Net: La mejor conexión a internet y 25MB extra a tu correo por $100 al mes. |