16

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.

Benjamin
  • 10,085
  • 19
  • 80
  • 130

1 Answers1

28

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));
Dean Harding
  • 71,468
  • 13
  • 145
  • 180