Displaying 1 result from an estimated 1 matches for "areturncod".
Did you mean:
areturncode
2010 Aug 23
1
[Bug] [Urgent] CreateProcess Failed internal error (1359)
Hi,
I working on porting an IDE on MacOSX with the help of Wine, And I discover a random bug on wine.
Please use this sample code to reproduce it (to be compiled on Windows):
Code:
/////////////////////////////////////////////////////////////////////////////
int Quit(int aReturnCode)
{
#ifdef _DEBUG
wcout << L"Press Enter to quit";
getchar();
#endif
return aReturnCode;
}
/////////////////////////////////////////////////////////////////////////////
int wmain(int argc, wchar_t *argv[])
{
int arg = 0;
if(argc > 1)
{
arg = _wtoi(argv[1]);
}
HANDL...