aboutsummaryrefslogtreecommitdiffstats
path: root/src/native/tinype/tiny2.c
blob: 6330911c719f550b330025d9851e13b2cda16ce1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#undef UNICODE
#define UNICODE
#include <windows.h>

const wchar_t * id = L"JogAmp Windows Universal Test PE Executable";
const wchar_t * cap = L"JogAmp";

// int __main()
// int main()
// int main( int argc, char* argv[] )
int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd)
{
    MessageBox(0, id, cap, MB_SETFOREGROUND | MB_OK);
    return 0;
}