mirror of
https://github.com/sslab-gatech/winnie
synced 2026-06-08 17:35:47 +00:00
14 lines
158 B
C++
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;
|
|
} |