Home | History | Annotate | Download | only in VS8.0

Lines Matching refs:command

28     char command[CMD_SIZE+1];
39 command[0] = '"'; /* quote the path to the executable */
40 size = sizeof(command) - 1;
41 if (RegQueryValueEx(hTortoise, "Directory", 0, &type, command+1, &size) != ERROR_SUCCESS ||
45 strcat_s(command, CMD_SIZE, "bin\\subwcrev.exe");
46 if (_stat(command+1, &st) < 0)
49 strcat_s(command, CMD_SIZE, "\" ..\\.. ..\\..\\Modules\\getbuildinfo.c getbuildinfo2.c");
50 puts(command); fflush(stdout);
51 if (system(command) < 0)
58 char command[500] = "cl.exe -c -D_WIN32 -DUSE_DL_EXPORT -D_WINDOWS -DWIN32 -D_WINDLL ";
65 strcat_s(command, CMD_SIZE, "-MD ");
68 strcat_s(command, CMD_SIZE, "-D_DEBUG -MDd ");
71 strcat_s(command, CMD_SIZE, "-MD /USECL:MS_ITANIUM ");
74 strcat_s(command, CMD_SIZE, "-MD ");
75 strcat_s(command, CMD_SIZE, "-MD /USECL:MS_OPTERON ");
83 strcat_s(command, CMD_SIZE, "getbuildinfo2.c -DSUBWCREV ");
85 strcat_s(command, CMD_SIZE, "..\\..\\Modules\\getbuildinfo.c");
86 strcat_s(command, CMD_SIZE, " -Fogetbuildinfo.o -I..\\..\\Include -I..\\..\\PC");
87 puts(command); fflush(stdout);
88 result = system(command);