The R Project SVN R

Rev

Rev 81360 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 81360 Rev 85596
Line 14... Line 14...
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
    __declspec(dllimport) extern int __argc;
-
 
20
    __declspec(dllimport) extern char **__argv;
-
 
21
 
-
 
22
    GA_startgraphapp(Instance, PrevInstance, CmdShow);
19
    GA_startgraphapp(Instance, PrevInstance, CmdShow);
23
    AppMain(__argc, __argv);
20
    AppMain(__argc, __argv);
24
#else
21
#else
25
    __declspec(dllimport) extern int _argc;
-
 
26
    __declspec(dllimport) extern char **_argv;
-
 
27
 
-
 
28
    GA_startgraphapp(Instance, PrevInstance, CmdShow);
22
    GA_startgraphapp(Instance, PrevInstance, CmdShow);
29
    AppMain(_argc, _argv);
23
    AppMain(_argc, _argv);
30
#endif
24
#endif
31
    return 0;
25
    return 0;
32
}
26
}