wmain.c 391 B

12345678910111213141516
  1. #include <windows.h>
  2. #include <stdlib.h> /* declaration of __argc and __argv */
  3. extern int main(int, char **);
  4. int PASCAL WinMain(HINSTANCE hinst, HINSTANCE hprev, LPSTR cmdline, int ncmdshow)
  5. {
  6. int rc;
  7. extern int __argc; /* this seems to work for all the compilers we tested, except Watcom compilers */
  8. extern char** __argv;
  9. rc = main(__argc, __argv);
  10. return rc;
  11. }