Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
ccc0a803
Commit
ccc0a803
authored
Aug 02, 2000
by
Jeremy White
Committed by
Alexandre Julliard
Aug 02, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added WM_TCARD and DWORDLONG.
parent
80d62c78
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
25 additions
and
5 deletions
+25
-5
windef.h
include/windef.h
+0
-2
winnt.h
include/winnt.h
+12
-0
winuser.h
include/winuser.h
+1
-0
wtypes.h
include/wtypes.h
+12
-3
No files found.
include/windef.h
View file @
ccc0a803
...
...
@@ -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) ==
...
...
include/winnt.h
View file @
ccc0a803
...
...
@@ -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
;
...
...
include/winuser.h
View file @
ccc0a803
...
...
@@ -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
...
...
include/wtypes.h
View file @
ccc0a803
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment