If a dll exports some functions and the functions have only ordinal numbers, how can I call the functions?

Give me a short example please.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

The documentation for GetProcAddress explains that you pass the integer ordinal in the low-order word of the lpProcName parameter. The MAKEINTRESOURCE macro can actually be used to make this a little easier:

int ordinal = 123;
HANDLE dll = LoadLibrary("MyDLL.dll");
FARPROC fn = GetProcAddress(dll, MAKEINTRESOURCE(ordinal));
link|improve this answer
Thanks Dean. :) – Benjamin Aug 30 '10 at 5:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.