Added WM_TCARD and DWORDLONG.
This commit is contained in:
parent
80d62c7888
commit
ccc0a8032b
|
@ -160,8 +160,6 @@ typedef unsigned short WCHAR;
|
|||
typedef int BOOL;
|
||||
typedef double DATE;
|
||||
typedef double DOUBLE;
|
||||
typedef double LONGLONG;
|
||||
typedef double ULONGLONG;
|
||||
|
||||
/* FIXME: Wine does not compile with strict on, therefore strict
|
||||
* handles are presently only usable on machines where sizeof(UINT) ==
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
#ifndef __WINE_WINNT_H
|
||||
#define __WINE_WINNT_H
|
||||
|
||||
#include "basetsd.h"
|
||||
#include "windef.h"
|
||||
|
||||
#ifndef RC_INVOKED
|
||||
|
@ -142,6 +143,17 @@ typedef LPCSTR PCTSTR, LPCTSTR;
|
|||
typedef BYTE BOOLEAN;
|
||||
typedef BOOLEAN *PBOOLEAN;
|
||||
|
||||
#ifndef _DWORDLONG_
|
||||
#define _DWORDLONG_
|
||||
typedef __uint64 DWORDLONG, *PDWORDLONG;
|
||||
#endif
|
||||
|
||||
#ifndef _ULONGLONG_
|
||||
#define _ULONGLONG_
|
||||
typedef __int64 LONGLONG, *PLONGLONG;
|
||||
typedef __uint64 ULONGLONG, *PULONGLONG;
|
||||
#endif
|
||||
|
||||
typedef struct _LIST_ENTRY {
|
||||
struct _LIST_ENTRY *Flink;
|
||||
struct _LIST_ENTRY *Blink;
|
||||
|
|
|
@ -636,6 +636,7 @@ typedef struct
|
|||
#define WM_COPYDATA 0x004a
|
||||
#define WM_CANCELJOURNAL 0x004b
|
||||
#define WM_NOTIFY 0x004e
|
||||
#define WM_TCARD 0x0052
|
||||
#define WM_HELP 0x0053
|
||||
#define WM_NOTIFYFORMAT 0x0055
|
||||
|
||||
|
|
|
@ -5,11 +5,9 @@
|
|||
#ifndef __WINE_WTYPES_H
|
||||
#define __WINE_WTYPES_H
|
||||
|
||||
|
||||
#include "windef.h"
|
||||
#include "basetsd.h"
|
||||
#include "rpc.h"
|
||||
|
||||
|
||||
typedef WORD CLIPFORMAT, *LPCLIPFORMAT;
|
||||
|
||||
typedef CHAR OLECHAR16;
|
||||
|
@ -27,6 +25,17 @@ typedef OLECHAR *BSTR;
|
|||
typedef BSTR16 *LPBSTR16;
|
||||
typedef BSTR *LPBSTR;
|
||||
|
||||
#ifndef _DWORDLONG_
|
||||
#define _DWORDLONG_
|
||||
typedef __uint64 DWORDLONG, *PDWORDLONG;
|
||||
#endif
|
||||
|
||||
#ifndef _ULONGLONG_
|
||||
#define _ULONGLONG_
|
||||
typedef __int64 LONGLONG, *PLONGLONG;
|
||||
typedef __uint64 ULONGLONG, *PULONGLONG;
|
||||
#endif
|
||||
|
||||
#define OLESTR16(x) x
|
||||
#define OLESTR(x) L##x
|
||||
|
||||
|
|
Loading…
Reference in New Issue