Hi,
I want to export a label from a function to other modules in x64 MASM assembly.
code example
------------------------
.code
PUBLIC GetLable
GetLable PROC
...
...
LABELTOEXPORT:
...
...
GetLable ENDP
--------------------------------------
from above program, I want to export LABELTOEXPORT to other modules. How can I do it?
In Linux it is possible to make this label as global so that other modules can access it.
How to do it on Windows with MASM assembler.
Regards,
Sukratu