Early-Cryo-Bird-Injection/test_load.cpp
2025-12-13 15:13:36 +01:00

15 lines
444 B
C++

#include <windows.h>
#include <cstdio>
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;
}