pppc/pppc.cc
2009-07-22 17:20:37 +00:00

15 lines
244 B
C++
Executable File

#include <windows.h>
#include <iostream>
using namespace std;
int WinMain(
HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow)
{
cerr << "Hi there" << endl;
return 0;
}