Files
2021-05-01 00:05:11 -04:00

14 lines
158 B
C++

#include <Windows.h>
#include <stdio.h>
#include <stdint.h>
extern "C" __declspec(dllexport) void target(void)
{
}
int main(void)
{
target();
return 0;
}