Fixed some issues found by winapi_check.
This commit is contained in:
parent
af1601b076
commit
9af5e69107
|
@ -155,7 +155,7 @@ type win32
|
|||
198 stub VarDecFromDisp
|
||||
199 stub VarDecFromBool
|
||||
200 stub GetErrorInfo
|
||||
201 stub SetErrorInfo
|
||||
201 stdcall SetErrorInfo(long ptr) SetErrorInfo
|
||||
202 stub CreateErrorInfo
|
||||
205 stdcall VarI2FromI1(long ptr) VarI2FromI1
|
||||
206 stdcall VarI2FromUI2(long ptr) VarI2FromUI2
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* Copyright 1996 Alexandre Julliard
|
||||
*/
|
||||
|
||||
#include "wine/port.h"
|
||||
#include "config.h"
|
||||
|
||||
#ifdef __BEOS__
|
||||
#include <be/kernel/fs_info.h>
|
||||
|
@ -33,6 +33,8 @@
|
|||
# include <pty.h>
|
||||
#endif
|
||||
|
||||
#include "wine/port.h"
|
||||
|
||||
/***********************************************************************
|
||||
* usleep
|
||||
*/
|
||||
|
|
|
@ -23,7 +23,9 @@
|
|||
|
||||
#include <fcntl.h>
|
||||
#include <unistd.h>
|
||||
#ifdef HAVE_SYS_MMAN_H
|
||||
# include <sys/mman.h>
|
||||
#endif
|
||||
#include "winuser.h"
|
||||
|
||||
extern char* g_lpstrFileName;
|
||||
|
|
Loading…
Reference in New Issue