• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /**
2  * This file has no copyright assigned and is placed in the Public Domain.
3  * This file is part of the mingw-w64 runtime package.
4  * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5  */
6 
7 #include <windows.h>
8 
9 extern HINSTANCE __mingw_winmain_hInstance;
10 extern LPSTR __mingw_winmain_lpCmdLine;
11 extern DWORD __mingw_winmain_nShowCmd;
12 
13 /*ARGSUSED*/
main(int __UNUSED_PARAM (flags),char ** __UNUSED_PARAM (cmdline),char ** __UNUSED_PARAM (inst))14 int main (int     __UNUSED_PARAM(flags),
15 	  char ** __UNUSED_PARAM(cmdline),
16 	  char ** __UNUSED_PARAM(inst))
17 {
18   return (int) WinMain (__mingw_winmain_hInstance, NULL,
19 			__mingw_winmain_lpCmdLine, __mingw_winmain_nShowCmd);
20 }
21