Posts

Showing posts with the label Winapi

C++ Requesting MSVCP110D.dll Even Though Staticly Linked

Answer : weird , asking for the debug version Tells you what you did wrong, you accidentally copied the Debug build of the DLL instead of the Release build. Since you only changed the setting for the Release build, it still requires msvcp110d.dll. It is in general wise to change such a setting for all configurations and all platforms. Tedious, so it often gets skipped. I copied the requested library manually in the release path and still wont work Right, that cannot work since you injected the DLL. A different process. So when it is loaded, the install directory for the game is searched for the file, not the directory where your utility is installed. Your friend needs the Visual-C++ Redistributables in order to properly run your injector, and for the DLL to be loaded. However After Injection, the dll is trying to LoadLibrary (if GetModuleHandle fails) the CRT dlls. There are a lot of them! You have some options: Include the required DLLs inside your I...