mirror of
https://github.com/reactos/reactos.git
synced 2025-04-25 16:10:29 +00:00
- Add reactos/wine/sys/types.h compatibility header
- winspool: add reactos/wine to include folders svn path=/trunk/; revision=38277
This commit is contained in:
parent
79f756b317
commit
53c3a69e0c
2 changed files with 19 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
<module name="winspool" type="win32dll" extension=".drv" baseaddress="${BASEADDRESS_WINSPOOL}" installbase="system32" installname="winspool.drv" allowwarnings="true" unicode="yes">
|
||||
<importlibrary definition="winspool.spec" />
|
||||
<include base="winspool">.</include>
|
||||
<include base="ReactOS">include/reactos/wine</include>
|
||||
<define name="_DISABLE_TIDENTS" />
|
||||
<library>ntdll</library>
|
||||
<library>kernel32</library>
|
||||
|
|
18
reactos/include/reactos/wine/sys/types.h
Normal file
18
reactos/include/reactos/wine/sys/types.h
Normal file
|
@ -0,0 +1,18 @@
|
|||
#ifndef __WINE_SYS_TYPES_H
|
||||
#define __WINE_SYS_TYPES_H
|
||||
|
||||
#include_next <sys/types.h>
|
||||
|
||||
#ifndef _PID_T_
|
||||
#define _PID_T_
|
||||
#ifndef _WIN64
|
||||
typedef int _pid_t;
|
||||
#else
|
||||
typedef __int64 _pid_t;
|
||||
#endif
|
||||
#ifndef NO_OLDNAMES
|
||||
typedef _pid_t pid_t;
|
||||
#endif
|
||||
#endif /* Not _PID_T_ */
|
||||
|
||||
#endif /* __WINE_SYS_TYPES_H */
|
Loading…
Reference in a new issue