Rev 51393 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
#include <windows.h>/* The mingw-runtime startup code has _argc and _argv as visiblesymbols, as do the MS compilers.The mingw-w64-crt is different, but this file is not used onMinGW-w64*/extern voidGA_startgraphapp(HINSTANCE Instance, HINSTANCE PrevInstance, int CmdShow);#ifdef WIN64int PASCALWinMain (HINSTANCE Instance, HINSTANCE PrevInstance, LPSTR CmdLine,int CmdShow){extern int __argc;extern char **__argv;extern void AppMain(int argc, char **argv);GA_startgraphapp(Instance, PrevInstance, CmdShow);AppMain(__argc, __argv);return 0;}#elseint PASCALWinMain (HINSTANCE Instance, HINSTANCE PrevInstance, LPSTR CmdLine,int CmdShow){extern int _argc;extern char **_argv;extern void AppMain(int argc, char **argv);GA_startgraphapp(Instance, PrevInstance, CmdShow);AppMain(_argc, _argv);return 0;}#endif