hardcode c:\reactos\bin for testing (only used in regtest code)

svn path=/trunk/; revision=35927
This commit is contained in:
Christoph von Wittich 2008-09-04 09:48:28 +00:00
parent a9844e64d7
commit 723b44631c

View file

@ -2226,13 +2226,12 @@ ProcessUnattendInf(HINF hUnattendedInf)
szPath[length] = '\\';
length++;
}
strcpy(&szPath[length], "dbgprint.exe --winetest %windir%\bin\version_winetest.exe\n");
strcpy(&szPath[length], "dbgprint.exe --winetest c:\reactos\bin\version_winetest.exe\n");
fwrite(szPath, 1, strlen(szPath) + 1, file);
strcpy(&szPath[length], "dbgprint.exe SYSREG_CHECKPOINT:THIRDBOOT_COMPLETE\n");
fwrite(szPath, 1, strlen(szPath) + 1, file);
strcpy(&szPath[length], "shutdown.exe -s");
fwrite(szPath, 1, strlen(szPath) + 1, file);
fprintf(file, "%s\n", "");
}
fclose(file);
}