15 lines
444 B
C++
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;
|
|
}
|