mirror of
https://github.com/reactos/reactos.git
synced 2025-01-06 06:20:13 +00:00
Move some more standard types in a common header
Thanks to Elrond from Samba-TNG for help svn path=/trunk/; revision=23512
This commit is contained in:
parent
7c4786c712
commit
2d7a591549
3 changed files with 7 additions and 6 deletions
|
@ -5,7 +5,6 @@
|
|||
#include "include/reactos/idl/wtypes.idl"
|
||||
|
||||
#define LSA_HANDLE unsigned long
|
||||
#define NTSTATUS unsigned int
|
||||
|
||||
[
|
||||
uuid(12345778-1234-abcd-ef00-0123456789ab),
|
||||
|
|
|
@ -2,12 +2,9 @@
|
|||
* Plug and Play Manager RPC interface definition
|
||||
*/
|
||||
|
||||
#define WORD unsigned short
|
||||
#define DWORD unsigned long
|
||||
#define ULONG unsigned long
|
||||
#include "include/reactos/idl/wtypes.idl"
|
||||
|
||||
#define CONFIGRET unsigned long
|
||||
#define BOOL unsigned long
|
||||
#define PBOOL unsigned long *
|
||||
|
||||
[
|
||||
uuid (809F4e40-A03D-11CE-8F69-08003E30051B),
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
#define BYTE unsigned char
|
||||
#define WORD unsigned short
|
||||
#define DWORD unsigned long
|
||||
#define ULONG unsigned long
|
||||
#define BOOL unsigned long
|
||||
#define LPSTR char*
|
||||
#define LPCSTR char*
|
||||
|
@ -7,3 +9,6 @@
|
|||
#define LPCWSTR wchar_t*
|
||||
#define LPBYTE unsigned char*
|
||||
#define LPDWORD unsigned long*
|
||||
#define PBOOL unsigned long*
|
||||
|
||||
#define NTSTATUS long
|
Loading…
Reference in a new issue