Fixed warnings.
This commit is contained in:
parent
002106ac22
commit
58abac376f
|
@ -358,7 +358,7 @@ static HANDLE16 __WSAsyncDBQuery(
|
|||
aq->sbuf = (SEGPTR)sbuf;
|
||||
aq->sbuflen = sbuflen;
|
||||
#if 1
|
||||
hthread = CreateThread(NULL,NULL,_async_queryfun,aq,0,NULL);
|
||||
hthread = CreateThread(NULL,0,_async_queryfun,aq,0,NULL);
|
||||
if (hthread==INVALID_HANDLE_VALUE)
|
||||
#endif
|
||||
_async_queryfun(aq);
|
||||
|
|
|
@ -208,7 +208,9 @@ static int DOSCONF_Files(char **confline)
|
|||
|
||||
static int DOSCONF_Install(char **confline)
|
||||
{
|
||||
#if 0
|
||||
int loadhigh = 0;
|
||||
#endif
|
||||
|
||||
*confline += 7; /* strlen("INSTALL") */
|
||||
if (!(DOSCONF_JumpToEntry(confline, '='))) return 0;
|
||||
|
|
|
@ -561,7 +561,7 @@ BOOL WINAPI GetUserObjectSecurity(HANDLE hObj, SECURITY_INFORMATION * pSIRequest
|
|||
* SetSystemCursor (USER32.507)
|
||||
*/
|
||||
BOOL WINAPI SetSystemCursor(HCURSOR hcur, DWORD id)
|
||||
{ FIXME(win32,"(%08x,%08x),stub!\n", hcur, id);
|
||||
{ FIXME(win32,"(%08x,%08lx),stub!\n", hcur, id);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue