1 #include <windows.h>
2 
3 // This is a dummy executable.  It's only needed because the installer
4 // needs an executable to hold the icon.
WinMain(HINSTANCE hI,HINSTANCE hP,LPSTR s,int n)5 int __stdcall WinMain(HINSTANCE hI, HINSTANCE hP, LPSTR s, int n)
6 {
7     return 0;
8 }
9