Commit ccc0a803 authored by Jeremy White's avatar Jeremy White Committed by Alexandre Julliard

Added WM_TCARD and DWORDLONG.

parent 80d62c78
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment