#include #include int main() { HMODULE h = LoadLibraryA("C:\\Users\\MyWindowsUser\\Downloads\\libphotoshop.dll"); if (!h) { char buf[256]; sprintf(buf, "Load failed: Error %lu", GetLastError()); MessageBoxA(NULL, buf, "FAIL", MB_ICONERROR); } else { MessageBoxA(NULL, "DLL LOADED OK!", "SUCCESS", MB_ICONINFORMATION); } Sleep(10000); // Keep open to see return 0; }