Fixed warnings.

This commit is contained in:
Michael Veksler 1999-04-16 09:41:22 +00:00 committed by Alexandre Julliard
parent 002106ac22
commit 58abac376f
3 changed files with 4 additions and 2 deletions

View File

@ -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);

View File

@ -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;

View File

@ -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;
}