pppc/pppc.cc
joshholtrop 017bf47501 remove svn:executable property
git-svn-id: http://apu.dw.local/svnusers/JoshHoltrop/pppc/trunk@31 8131a0b2-b21c-1c47-bd6a-f003126495bd
2009-07-29 16:54:37 +00:00

15 lines
244 B
C++

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