git-svn-id: http://apu.dw.local/svnusers/JoshHoltrop/pppc/trunk@30 8131a0b2-b21c-1c47-bd6a-f003126495bd
15 lines
244 B
C++
Executable File
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;
|
|
}
|