I would like to use Windows API's PatchAPI in order to apply some patches. Applying of patches is implemented in mspatcha.dll, which should be located in one's system32 folder.
After reading in various places, such as their ref and googling, I have yet to find the right way to link to this DLL. I would like to link statically, dealing with LoadLibrary seems messy and sort of defeats the purpose of their patchapi.h header. Since I have found no .lib file I am to link to, I created my own using the following commands:
1) dumpbin /exports C:\windows\system32\mspatcha.dll
2) Create a mspatcha.def file, write an "EXPORTS" line, followed by one line for each function name that appears in the output of dumpbin
3) lib /def:mspatcha.def /out:mspatcha.lib
Although I'm sure this is not the right way to statically link with patchapi, I have not found the right way to do so. Anyway, after following these steps and writing a simple testcase made of a single call to ApplyPatchToFileExA(), I still get a linker error on the symbol _ApplyPatchToFileA@16. Taking a look at the exported symbols of my newly created mspatcha.lib, it appears that the functions use the wrong name convention
D:\tmp\mspatcha>dumpbin /exports mspatcha.lib|find "ApplyPatchToFileExA"
_ApplyPatchToFileExA
Unless I'm wrong, this indicates that the lib exported functions using cdecl whereas the dll is using stdcall (or at least is declaring the function as _stdcall). See: C name decoration in Microsoft Windows.
My questions are: what is the right way to use mspatcha.dll in my application and what was wrong with my process of creating a lib from a dll so I can do static linking?
The detailed output of my terminal can be found here: http://pastebin.com/q4FV4Se6
lib.exeshould create decorated names like that from the DEF file you give. Have you tried to link against this .lib and then inspect the import directory of the resulting binary? – STATUS_ACCESS_DENIED Apr 19 '11 at 0:03