1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
|
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2008 by Sun Microsystems, Inc.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: user9x.h,v $
* $Revision: 1.12 $
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#pragma once
#ifndef _WINDOWS_
#include <windows.h>
#endif
#ifdef __cplusplus
extern "C"{
#endif
//------------------------------------------------------------------------
// undefine the macros defined in the winuser.h file in order to avoid
// warnings because of multiple defines
//------------------------------------------------------------------------
#ifdef SendMessageW
#undef SendMessageW
#endif
#ifdef CreateWindowExW
#undef CreateWindowExW
#endif
#ifdef RegisterClassExW
#undef RegisterClassExW
#endif
#ifdef UnregisterClassW
#undef UnregisterClassW
#endif
#ifdef RegisterClipboardFormatW
#undef RegisterClipboardFormatW
#endif
#ifdef GetClipboardFormatNameW
#undef GetClipboardFormatNameW
#endif
#ifdef SetWindowTextW
#undef SetWindowTextW
#endif
#ifdef GetWindowTextW
#undef GetWindowTextW
#endif
#ifdef InsertMenuItemW
#undef InsertMenuItemW
#endif
#ifndef DrawTextW
#undef DrawTextW
#endif
//------------------------------------------------------------------------
// defines
//------------------------------------------------------------------------
#define USER9X_API extern
//------------------------------------------------------------------------
// declare function pointers to the appropriate user32 functions
//------------------------------------------------------------------------
USER9X_API LRESULT ( WINAPI * lpfnSendMessageW) (
HWND hWnd, // handle to the destination window
UINT Msg, // message
WPARAM wParam, // first message parameter
LPARAM lParam // second message parameter
);
USER9X_API HWND ( WINAPI * lpfnCreateWindowExW ) (
DWORD dwExStyle, // extended window style
LPCWSTR lpClassName, // registered class name
LPCWSTR lpWindowName, // window name
DWORD dwStyle, // window style
int x, // horizontal position of window
int y, // vertical position of window
int nWidth, // window width
int nHeight, // window height
HWND hWndParent, // handle to parent or owner window
HMENU hMenu, // menu handle or child identifier
HINSTANCE hInstance, // handle to application instance
LPVOID lpParam // window-creation data
);
USER9X_API ATOM ( WINAPI * lpfnRegisterClassExW ) (
CONST WNDCLASSEXW* lpwcx // class data
);
USER9X_API BOOL ( WINAPI * lpfnUnregisterClassW ) (
LPCWSTR lpClassName, // class name
HINSTANCE hInstance // handle to application instance
);
USER9X_API UINT (WINAPI * lpfnRegisterClipboardFormatW) (
LPCWSTR lpszFormat // name of new format
);
USER9X_API int ( WINAPI * lpfnGetClipboardFormatNameW ) (
UINT format, // clipboard format to retrieve
LPWSTR lpszFormatName, // format name
int cchMaxCount // length of format name buffer
);
USER9X_API BOOL ( WINAPI * lpfnSetWindowTextW ) (
HWND hWnd,
LPCWSTR lpString
);
USER9X_API int ( WINAPI * lpfnGetWindowTextW ) (
HWND hWnd, // handle to the window or control
LPWSTR lpString, // text buffer
int nMaxCount // length of text buffer
);
USER9X_API BOOL ( WINAPI * lpfnInsertMenuItemW ) (
HMENU hMenu, // handle to menu
UINT uItem, // identifier or position
BOOL fByPosition, // meaning of uItem
LPCMENUITEMINFOW lpmii // menu item information
);
USER9X_API int ( WINAPI * lpfnDrawTextW ) (
HDC hDC, // handle to DC
LPCWSTR lpString, // text to draw
int nCount, // text length
LPRECT lpRect, // formatting dimensions
UINT uFormat // text-drawing options
);
USER9X_API BOOL ( WINAPI * lpfnDrawStateW ) (
HDC hdc, // handle to device context
HBRUSH hbr, // handle to brush
DRAWSTATEPROC lpOutputFunc, // callback function
LPARAM lData, // image information
WPARAM wData, // more image information
int x, // horizontal location
int y, // vertical location
int cx, // image width
int cy, // image height
UINT fuFlags // image type and state
);
//------------------------------------------------------------------------
// redefine the above undefined macros so that the preprocessor replaces
// all occurrences of this macros with our function pointer
//------------------------------------------------------------------------
#define SendMessageW lpfnSendMessageW
#define CreateWindowExW lpfnCreateWindowExW
#define RegisterClassExW lpfnRegisterClassExW
#define UnregisterClassW lpfnUnregisterClassW
#define RegisterClipboardFormatW lpfnRegisterClipboardFormatW
#define GetClipboardFormatNameW lpfnGetClipboardFormatNameW
#define SetWindowTextW lpfnSetWindowTextW
#define GetWindowTextW lpfnGetWindowTextW
#define InsertMenuItemW lpfnInsertMenuItemW
#define DrawTextW lpfnDrawTextW
#define DrawStateW lpfnDrawStateW
#ifdef __cplusplus
}
#endif
|