Home | History | Annotate | Download | only in VS7.1

Lines Matching refs:command

26     char command[500];
37 command[0] = '"'; /* quote the path to the executable */
38 size = sizeof(command) - 1;
39 if (RegQueryValueEx(hTortoise, "Directory", 0, &type, command+1, &size) != ERROR_SUCCESS ||
43 strcat(command, "bin\\subwcrev.exe");
44 if (_stat(command+1, &st) < 0)
47 strcat(command, "\" ..\\.. ..\\..\\Modules\\getbuildinfo.c getbuildinfo2.c");
48 puts(command); fflush(stdout);
49 if (system(command) < 0)
56 char command[500] = "cl.exe -c -D_WIN32 -DUSE_DL_EXPORT -D_WINDOWS -DWIN32 -D_WINDLL ";
63 strcat(command, "-MD ");
66 strcat(command, "-D_DEBUG -MDd ");
69 strcat(command, "-MD /USECL:MS_ITANIUM ");
72 strcat(command, "-MD ");
73 strcat(command, "-MD /USECL:MS_OPTERON ");
81 strcat(command, "getbuildinfo2.c -DSUBWCREV ");
83 strcat(command, "..\\..\\Modules\\getbuildinfo.c");
84 strcat(command, " -Fogetbuildinfo.o -I..\\..\\Include -I..\\..\\PC");
85 puts(command); fflush(stdout);
86 result = system(command);