Export function in c++ static library -
My app is linked to a third-party static library which is without source code and I think that one executed in this library The function is exported by using my exe dumpbin.exe, just like in an export function, in a DLL I have tried to modify the header file provided by the library, to relieve all the __declipsepack stuff Thats, and to add my app again, but the function has still been exported. Is there a way to know it?
No you will have to compile the library again, changing the header will not affect the library binary code. What is the problem with the function you exported?
Comments
Post a Comment