mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-23 16:21:15 +00:00
10 lines
191 B
C++
10 lines
191 B
C++
#include "decomp.h"
|
|
|
|
#include "Windows.h"
|
|
|
|
// Export "Patch" function (non-mangled name)
|
|
extern "C" __declspec(dllexport) void Patch(void *root)
|
|
{
|
|
MessageBoxA(NULL, "HELLO", "HELLO", 0);
|
|
}
|