mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
247 B
C
20 lines
247 B
C
|
#include "toolspath.h"
|
||
|
|
||
|
int
|
||
|
main(int argc, char **argv)
|
||
|
{
|
||
|
int iRetVal;
|
||
|
char* args[1000];
|
||
|
int i = 0;
|
||
|
int j = 0;
|
||
|
int k = 0;
|
||
|
int s = 0;
|
||
|
args[i++] = RC_PATH;
|
||
|
|
||
|
argpath_conv(&argv[1], &args[i]);
|
||
|
|
||
|
dumpargs(args);
|
||
|
|
||
|
return run(args);
|
||
|
}
|