Hi, I am fairly new to C++, having been a c# person for many years.
I am trying to access the exports of an '.exe' file but I can't #include or #import it because of a "stray byte" error (which occurs for 5000+ locations). I don't have the original source/headers of the exe btw.
I realise I can use the LoadLibrary method for getting function pointers, but to my knowledge it doesn't allow me access to the public classes in the .exe file.
Any suggestions?
I am trying to access the exports of an '.exe' file but I can't #include or #import it because of a "stray byte" error (which occurs for 5000+ locations). I don't have the original source/headers of the exe btw.
I realise I can use the LoadLibrary method for getting function pointers, but to my knowledge it doesn't allow me access to the public classes in the .exe file.
Any suggestions?
Comment