mirror of
https://github.com/reactos/reactos.git
synced 2025-01-06 06:20:13 +00:00
Put standard types in a common header
Thanks to Elrond from Samba-TNG for help svn path=/trunk/; revision=23510
This commit is contained in:
parent
f792bc36a0
commit
157b8e865c
3 changed files with 12 additions and 14 deletions
|
@ -2,11 +2,8 @@
|
|||
* Local Security Authority interface definition
|
||||
*/
|
||||
|
||||
#define BYTE unsigned char
|
||||
#define DWORD unsigned int
|
||||
#define BOOL unsigned long
|
||||
#define LPBYTE unsigned char*
|
||||
#define LPDWORD unsigned long*
|
||||
#include "include/reactos/idl/wtypes.idl"
|
||||
|
||||
#define LSA_HANDLE unsigned long
|
||||
#define NTSTATUS unsigned int
|
||||
|
||||
|
|
|
@ -4,21 +4,13 @@
|
|||
|
||||
//#include <windef.h>
|
||||
//#include <winsvc.h>
|
||||
#include "include/reactos/idl/wtypes.idl"
|
||||
|
||||
#define BYTE unsigned char
|
||||
#define DWORD unsigned long
|
||||
#define BOOL unsigned long
|
||||
#define SC_HANDLE unsigned int
|
||||
#define SC_LOCK unsigned int
|
||||
#define SERVICE_STATUS_HANDLE unsigned long
|
||||
#define SC_STATUS_TYPE unsigned long
|
||||
#define SC_ENUM_TYPE unsigned long
|
||||
#define LPSTR char*
|
||||
#define LPCSTR char*
|
||||
#define LPWSTR wchar_t*
|
||||
#define LPCWSTR wchar_t*
|
||||
#define LPBYTE unsigned char*
|
||||
#define LPDWORD unsigned long*
|
||||
|
||||
[
|
||||
uuid(367abb81-9844-35f1-ad32-98f038001003),
|
||||
|
|
9
reactos/include/reactos/idl/wtypes.idl
Normal file
9
reactos/include/reactos/idl/wtypes.idl
Normal file
|
@ -0,0 +1,9 @@
|
|||
#define BYTE unsigned char
|
||||
#define DWORD unsigned long
|
||||
#define BOOL unsigned long
|
||||
#define LPSTR char*
|
||||
#define LPCSTR char*
|
||||
#define LPWSTR wchar_t*
|
||||
#define LPCWSTR wchar_t*
|
||||
#define LPBYTE unsigned char*
|
||||
#define LPDWORD unsigned long*
|
Loading…
Reference in a new issue