|
Static import by ordinal
Is there any way to import a function in a C program that is only exported by ordinal from a DLL (besides dynamically using LoadLibrary/GetProcAddress)?
For example the IsOS function is documented by MS (recently) and is exported by shlwapi.dll as ordinal 437, how can it be statically linked in a C program?
|