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
|
198 stub VarDecFromDisp
|
||||||
199 stub VarDecFromBool
|
199 stub VarDecFromBool
|
||||||
200 stub GetErrorInfo
|
200 stub GetErrorInfo
|
||||||
201 stub SetErrorInfo
|
201 stdcall SetErrorInfo(long ptr) SetErrorInfo
|
||||||
202 stub CreateErrorInfo
|
202 stub CreateErrorInfo
|
||||||
205 stdcall VarI2FromI1(long ptr) VarI2FromI1
|
205 stdcall VarI2FromI1(long ptr) VarI2FromI1
|
||||||
206 stdcall VarI2FromUI2(long ptr) VarI2FromUI2
|
206 stdcall VarI2FromUI2(long ptr) VarI2FromUI2
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
* Copyright 1996 Alexandre Julliard
|
* Copyright 1996 Alexandre Julliard
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "wine/port.h"
|
#include "config.h"
|
||||||
|
|
||||||
#ifdef __BEOS__
|
#ifdef __BEOS__
|
||||||
#include <be/kernel/fs_info.h>
|
#include <be/kernel/fs_info.h>
|
||||||
|
@ -33,6 +33,8 @@
|
||||||
# include <pty.h>
|
# include <pty.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include "wine/port.h"
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* usleep
|
* usleep
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -23,7 +23,9 @@
|
||||||
|
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <sys/mman.h>
|
#ifdef HAVE_SYS_MMAN_H
|
||||||
|
# include <sys/mman.h>
|
||||||
|
#endif
|
||||||
#include "winuser.h"
|
#include "winuser.h"
|
||||||
|
|
||||||
extern char* g_lpstrFileName;
|
extern char* g_lpstrFileName;
|
||||||
|
|
Loading…
Reference in New Issue