The R Project SVN R

Rev

Rev 51816 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 51816 Rev 57416
Line 13... Line 13...
13
WinMain (HINSTANCE Instance, HINSTANCE PrevInstance, LPSTR CmdLine,
13
WinMain (HINSTANCE Instance, HINSTANCE PrevInstance, LPSTR CmdLine,
14
	 int CmdShow)
14
	 int CmdShow)
15
{
15
{
16
    extern void AppMain(int argc, char **argv);
16
    extern void AppMain(int argc, char **argv);
17
 
17
 
18
#ifdef W64
18
#ifdef _W64
19
    extern int __argc;
19
    extern int __argc;
20
    extern char **__argv;
20
    extern char **__argv;
21
 
21
 
22
    GA_startgraphapp(Instance, PrevInstance, CmdShow);
22
    GA_startgraphapp(Instance, PrevInstance, CmdShow);
23
    AppMain(__argc, __argv);
23
    AppMain(__argc, __argv);