Displaying 2 results from an estimated 2 matches for "startupinfow".
Did you mean:
startupinfo
2010 Aug 23
1
[Bug] [Urgent] CreateProcess Failed internal error (1359)
...;Start %d\n",arg);
if(arg >= 7)
{
printf( "End chain\n");
return Quit(0);
}
int max = 2;
if(arg > 0)
{
max = 2;
}
for(int i = 0; i < max; i++)
{
wchar_t buffer[255];
swprintf(buffer,255,L"\"%s\" %d %s%d",argv[0],arg + 1,argv[2],i);
STARTUPINFOW si;
PROCESS_INFORMATION pi;
ZeroMemory( &si, sizeof(si) );
si.cb = sizeof(si);
si.dwFlags = STARTF_USESTDHANDLES/*|STARTF_USESHOWWINDOW*/;
//sui.wShowWindow = SW_HIDE;
ZeroMemory( &pi, sizeof(pi) );
// Start the child process.
if( !CreateProcessW( NULL, // No module nam...
2019 Nov 29
0
Wine release 4.21
...ntdll: Fix tick count calculation on Mac.
Conor McCarthy (2):
winedbg: Use correct CALL operand size when fetching the delta.
winedbg: Add support for x86_64 indirect function call targets.
Damjan Jovanovic (3):
winedbg: Allow changing the current thread.
start.exe: STARTUPINFOW needs the STARTF_USESHOWWINDOW flag.
comctl32: Allocate the right wstr size for the TVN_GETDISPINFOW reply.
Derek Lesho (1):
setupapi: Add SetupGetInfDriverStoreLocationW stub.
Dmitry Timoshkov (2):
wineboot: Automatically create ProfileList key for current user.
kernelbas...