I've done some googling but haven't really found much. How does GetProcAddress work? What goes on behind the scenes? Do the method names and their corresponding address get stored in meta data somewhere?
Asked
Active
Viewed 1,522 times
2 Answers
4
Exactly. They are stored in DLL/EXE export header. You can see it with dumpbin.exe.

Pavel Radzivilovsky
- 18,794
- 5
- 57
- 67
1
Look for Matt Pietrek's stuff on PE file format or his book Windows 95 System Programming Secrets. There are bounchs of custom implementatios of GetProcAddress to look in to it.

dearme
- 11
- 1