OSDN Git Service

Avoid proliferation of static snprintf() implementations.
[mingw/mingw-org-wsl.git] / w32api / ChangeLog
1 2021-01-25  Keith Marshall  <keith@users.osdn.me>
2
3         Represent <winbase.h> file creation bit-flags in hexadecimal.
4
5         * include/winbase.h (FILE_FLAG_OVERLAPPED)
6         (FILE_FLAG_NO_BUFFERING, FILE_FLAG_RANDOM_ACCESS)
7         (FILE_FLAG_SEQUENTIAL_SCAN, FILE_FLAG_DELETE_ON_CLOSE)
8         (FILE_FLAG_BACKUP_SEMANTICS, FILE_FLAG_POSIX_SEMANTICS)
9         (FILE_FLAG_OPEN_REPARSE_POINT, FILE_FLAG_OPEN_NO_RECALL): Use of
10         decimal-value definitions needlessly obfuscates bit-mapped intent;
11         convert all to their hexadecimal equivalents.
12
13 2020-07-23  Keith Marshall  <keith@users.osdn.me>
14
15         Prepare and publish MinGW.org WSL-5.4.1 release.
16
17         * All files (wsl-5.4.1-release): Tag assigned.
18
19 2020-07-08  Keith Marshall  <keith@users.osdn.me>
20
21         Prepare and publish MinGW.org WSL-5.4 release.
22
23         * All files (wsl-5.4-release): Tag assigned.
24
25 2020-07-06  Keith Marshall  <keith@users.osdn.me>
26
27         Prepare and publish MinGW.org WSL-5.3.4 release.
28
29         * All files (wsl-5.3.4-release): Tag assigned.
30
31 2020-07-05  Keith Marshall  <keith@users.osdn.me>
32
33         Revert typedef of socklen_t to signed int type.
34
35         * include/ws2tcpip.h (socklen_t): Change from unsigned int to int.
36
37         * include/wspiapi.h (__wspiapi_getnameinfo): In comparison...
38         [len < sizeof(struct sockaddr)]: ...cast RHS to socklen_t, which is
39         the type of len, to ensure type consistency.
40
41 2020-06-03  Keith Marshall  <keith@users.osdn.me>
42
43         Prepare and publish MinGW.org WSL-5.3.3 release.
44
45         * All files (wsl-5.3.3-release): Tag assigned.
46
47 2020-05-28  Keith Marshall  <keith@users.osdn.me>
48
49         Prepare and publish MinGW.org WSL-5.3.2 release.
50
51         * All files (wsl-5.3.2-release): Tag assigned.
52
53 2020-04-30  Keith Marshall  <keith@users.osdn.me>
54
55         Prepare and publish MinGW.org WSL-5.3.1 release.
56
57         * All files (wsl-5.3.1-release): Tag assigned.
58
59 2020-03-28  Keith Marshall  <keith@users.osdn.me>
60
61         Make <winsvc.h> header effectively self-contained.
62
63         * include/winsvc.h: Tidy layout; assert copyright.
64         Include <windef.h>, so supporting stand-alone inclusion.
65         (pragma GCC system_header): Remove redundant GCC version guard.
66         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
67         (__AW_ALIAS__): Use it to selectively typedef...
68         [UNICODE vs. ! UNICODE] (LPSERVICE_MAIN_FUNCTION)
69         (SERVICE_FAILURE_ACTIONS, LPSERVICE_FAILURE_ACTIONS)
70         (ENUM_SERVICE_STATUS_PROCESS, LPENUM_SERVICE_STATUS_PROCESS)
71         (QUERY_SERVICE_LOCK_STATUS, LPQUERY_SERVICE_LOCK_STATUS)
72         (QUERY_SERVICE_CONFIG, LPQUERY_SERVICE_CONFIG)
73         (SERVICE_TABLE_ENTRY, LPSERVICE_TABLE_ENTRY)
74         (SERVICE_DESCRIPTION, LPSERVICE_DESCRIPTION)
75         (ENUM_SERVICE_STATUS, LPENUM_SERVICE_STATUS): ...these.
76         (__AW_SUFFIXED__): Likewise, use it to selectively define...
77         [UNICODE vs. ! UNICODE] (SERVICES_ACTIVE_DATABASE)
78         (SERVICES_FAILED_DATABASE, SC_GROUP_IDENTIFIER)
79         (CreateService, ChangeServiceConfig, ChangeServiceConfig2)
80         (EnumDependentServices, EnumServicesStatus, EnumServicesStatusEx)
81         (GetServiceDisplayName, GetServiceKeyName, OpenSCManager)
82         (OpenService, QueryServiceConfig, QueryServiceConfig2)
83         (QueryServiceLockStatus, RegisterServiceCtrlHandler)
84         (StartService, StartServiceCtrlDispatcher)
85         (RegisterServiceCtrlHandlerEx): ...these.
86         (__AW_STRING_W__): Use it to derive definitions for...
87         (SERVICES_ACTIVE_DATABASEW, SERVICES_FAILED_DATABASEW)
88         (SC_GROUP_IDENTIFIERW): ...each of these, from...
89         (SERVICES_ACTIVE_DATABASEA, SERVICES_FAILED_DATABASEA)
90         (SC_GROUP_IDENTIFIERA): ...these, respectively.
91
92 2020-03-05  Keith Marshall  <keith@users.osdn.me>
93
94         Prepare and publish MinGW.org WSL-5.3 release.
95
96         * All files (wsl-5.3-release): Tag assigned.
97
98 2020-01-20  Keith Marshall  <keith@users.osdn.me>
99
100         Implement <wspiapi.h> sockets fall-back API.
101
102         * tests/headers.at: Add...
103         * include/wspiapi.h: ...this new file; it implements...
104         (WspiapiGetAddrInfo, WspiapiGetNameInfo, WspiapiFreeAddrInfo):
105         ...these inline fall-back replacement implementations for...
106         (getaddrinfo, getnameinfo, freeaddrinfo): ...these IETF RFC 3493
107         functions, respectively, per hints in Microsoft online docs.
108
109         * include/ws2tcpip.h: Tidy layout; assert copyright.
110         (pragma GCC system_header): Remove redundant GCC version guard.
111         (EAI_SYSTEM, EAI_OVERFLOW): New symbolic error codes; define them.
112         (socklen_t): Correct typedef; was signed but negative is meaningless.
113         (getnameinfo): Adjust prototype declaration to conform to RFC 3493.
114         (__AW_SUFFIXED__): Use it to selectively map definitions for...
115         [UNICODE vs. ! UNICODE] (gai_strerror): ...this function.
116         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
117
118 2020-01-17  Keith Marshall  <keith@users.osdn.me>
119
120         Preserve order of tests for integrity of header files.
121
122         * tests/Makefile.in: Explicitly sort $wildcard output, within...
123         (list_headers): ...this new function-style macro.
124         (enum_headers, enum_header_subdirs): Use it.
125
126         * tests/headers.at: Adjust to recent GNU make $sort order.
127
128 2020-01-15  Keith Marshall  <keith@users.osdn.me>
129
130         Incorporate <winnls.h> updates for Vista and Windows-7.
131
132         * include/winnls.h: Reorganize into logical definition groups.
133         [_WIN32_WINNT >= _WIN32_WINNT_VISTA] (LOCALE_CUSTOM_DEFAULT)
134         (LOCALE_CUSTOM_UI_DEFAULT, LOCALE_CUSTOM_UNSPECIFIED, LOCALE_SNAME)
135         (LOCALE_SDURATION, LOCALE_SKEYBOARDSTOINSTALL, LOCALE_SSCRIPTS)
136         (LOCALE_SNAN, LOCALE_SPOSINFINITY, LOCALE_SNEGINFINITY)
137         (LOCALE_SISO3166CTRYNAME2, LOCALE_SISO639LANGNAME2)
138         (LOCALE_SSHORTESTDAYNAME1, LOCALE_SSHORTESTDAYNAME2)
139         (LOCALE_SSHORTESTDAYNAME3, LOCALE_SSHORTESTDAYNAME4)
140         (LOCALE_SSHORTESTDAYNAME5, LOCALE_SSHORTESTDAYNAME6)
141         (LOCALE_SSHORTESTDAYNAME7, CAL_SSHORTESTDAYNAME1)
142         (CAL_SSHORTESTDAYNAME2, CAL_SSHORTESTDAYNAME3, CAL_SSHORTESTDAYNAME4)
143         (CAL_SSHORTESTDAYNAME5, CAL_SSHORTESTDAYNAME6, CAL_SSHORTESTDAYNAME7)
144         (CAL_UMALQURA, C3_HIGHSURROGATE, C3_LOWSURROGATE): New symbolic
145         constants; define each as a manifest constant macro.
146         [_WIN32_WINNT >= _WIN32_WINNT_WIN7] (CAL_SMONTHDAY)
147         (CAL_SABBREVERASTRING): Likewise.
148         [_WIN32_WINNT >= _WIN32_WINNT_VISTA] (GetCalendarInfoEx): New
149         function; declare its prototype.
150
151 2020-01-14  Keith Marshall  <keith@users.osdn.me>
152
153         Make <winnls.h> header effectively self-contained.
154
155         * include/winnls.h: Tidy layout; assert copyright.
156         Include <winbase.h>, so supporting stand-alone inclusion.
157         (pragma GCC system_header): Remove redundant GCC version guard.
158         (WINVER, _WIN32_WINNT): Always use symbolic version comparisons.
159         (__AW_ALIAS__): Use it to selectively typedef...
160         [UNICODE vs. ! UNICODE] (CPINFOEX, LPCPINFOEX, CURRENCYFMT)
161         (LPCURRENCYFMT, NUMBERFMT, LPNUMBERFMT): ...each of these generic data
162         types; delete redundant UNICODE vs. non-UNICODE variants.
163         (__AW_SUFFIXED__): Likewise, use it to selectively define...
164         [UNICODE vs. ! UNICODE] (CALINFO_ENUMPROC, CALINFO_ENUMPROCEX)
165         (LANGUAGEGROUP_ENUMPROC, LANGGROUPLOCALE_ENUMPROC, LOCALE_ENUMPROC)
166         (CODEPAGE_ENUMPROC, DATEFMT_ENUMPROC, DATEFMT_ENUMPROCEX)
167         (TIMEFMT_ENUMPROC, UILANGUAGE_ENUMPROC, CompareString)
168         (EnumCalendarInfo, EnumDateFormats, EnumSystemCodePages)
169         (EnumSystemLocales, EnumTimeFormats, FoldString, GetCalendarInfo)
170         (GetCPInfoEx, GetCurrencyFormat, GetDateFormat, GetGeoInfo)
171         (GetLocaleInfo, GetNumberFormat, GetStringTypeEx, GetTimeFormat)
172         (LCMapString, SetCalendarInfo, SetLocaleInfo, EnumCalendarInfoEx)
173         (EnumDateFormatsEx, EnumSystemLanguageGroups, EnumLanguageGroupLocales)
174         (EnumUILanguages): ...these generic names; delete redundant variants.
175         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
176
177 2019-07-06  Keith Marshall  <keith@users.osdn.me>
178
179         Prepare and publish MinGW.org WSL-5.2.2 release.
180
181         * All files (wsl-5.2.2-release): Tag assigned.
182
183 2019-06-07  Keith Marshall  <keith@users.osdn.me>
184
185         Add missing definitions; fix MinGW-Bug #39129
186
187         * include/winnt.h (PAGE_TARGETS_INVALID): Define it.
188         (PAGE_TARGETS_NO_UPDATE): Likewise.
189
190 2019-05-03  Keith Marshall  <keith@users.osdn.me>
191
192         Correct a typographic error; fix MinGW-Bug #39193
193
194         * include/commctrl.h (ListView_SubItemHitTest): Balance parentheses;
195         add a missing closing parenthesis.
196
197 2019-04-08  Keith Marshall  <keith@users.osdn.me>
198
199         Correct a typographic error; fix MinGW-Bug #39117
200
201         * include/commctrl.h (STATUSCUASSNAME): Correct misspelling...
202         (STATUSCLASSNAME): ...to this.
203
204 2019-02-03  Keith Marshall  <keith@users.osdn.me>
205
206         Clean up winsock default version selection stratagem.
207
208         * include/winsock.h [_WINSOCK_H]: Defer definition until within new
209         internal recursion breaking retest block; following evaluation of...
210         [__USE_MINGW_WINSOCK_DEFAULT]: ...this, whence <winsock2.h> may be
211         included, reproducing the original version selection logic from...
212         * include/_winsock.h: ...here; file is now obsolete; delete it.
213
214         * include/winsock2.h (__USE_MINGW_WINSOCK_DEFAULT): Undefine it,
215         before including <winsock.h>
216
217         * include/windows.h include/nspapi.h include/wsnetbs.h: Define...
218         (__USE_MINGW_WINSOCK_DEFAULT): ...this, and then include <winsock.h>
219         instead of deleted file <_winsock.h>
220
221         * tests/headers.at: Regenerated.
222
223 2019-01-22  Keith Marshall  <keith@users.osdn.me>
224
225         Prepare and publish MinGW.org WSL-5.2.1 release.
226
227         * All files (wsl-5.2.1-release): Tag assigned.
228
229 2019-01-22  Keith Marshall  <keith@users.osdn.me>
230
231         Incorporate user-customized <features.h> configuration.
232
233         * tests/Makefile.in (install-mingwrt-headers): Create <features.h>
234         stub; this is an empty file, yielding the default configuration.
235
236 2018-12-23  Keith Marshall  <keith@users.osdn.me>
237
238         Prepare and publish MinGW.org WSL-5.2 release.
239
240         * All files (wsl-5.2-release): Tag assigned.
241
242 2018-12-18  Keith Marshall  <keith@users.osdn.me>
243
244         Make <winver.h> header effectively self-contained.
245
246         * include/winver.h: Include <windef.h>
247
248 2018-11-23  Keith Marshall  <keith@users.osdn.me>
249
250         Fix MinGW-Bug #2248 (SF ticket).
251
252         * include/commctrl.h (NMPGSCROLL): Set packing to 1-byte alignment.
253         (NMPGSCROLL.fwKeys): Change type from BOOL to WORD.
254
255 2018-11-23  Keith Marshall  <keith@users.osdn.me>
256
257         Apply some more cosmetic layout adjustments.
258
259         * include/commctrl.h: Keep 'typedef' and 'struct' on a single line,
260         for each untagged aggregate type definition.
261
262 2018-11-18  Jelle Geerts  <heisenbug@users.osdn.me>
263
264         Fix MinGW-Bug #38736 (OSDN ticket).
265
266         * include/commctrl.h (DTM_SETFORMATW): Correct definition; was 0x1050,
267         but should be equivalent to 0x1000 + 50, which is actually 0x1032.
268
269 2018-11-18  Keith Marshall  <keith@users.osdn.me>
270
271         Make <commctrl.h> header effectively self-contained.
272
273         * include/commctrl.h: Tidy layout; assert copyright.
274         Include <winbase.h> and <prsht.h>; both are required to resolve
275         inter-header dependencies, so achieving effective self-containment.
276         Correctly parenthesize argument references in macro definitions.
277         (pragma GCC system_header): Remove redundant GCC version guard.
278         (_WIN32_WINNT, _WIN32_IE): Always use symbolic version comparisons.
279         (SNDMSG): Remove definition; it is inherited from <prsht.h> anyway.
280         (__AW_ALIAS__, __AW_SUFFIXED__, __AW_STRING_A__, __AW_STRING_W__):
281         Use them; they facilitate maintenance of robust definitions for...
282         [UNICODE vs. ! UNICODE]: ...generic symbols and strings.
283         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
284
285 2018-11-16  Keith Marshall  <keith@users.osdn.me>
286
287         Make <prsht.h> header effectively self-contained.
288
289         * include/prsht.h: Tidy layout; assert copyright.
290         Include <winuser.h> to resolve inter-header dependencies.
291         Correctly parenthesize argument references in macro definitions.
292         (pragma GCC system_header): Remove redundant GCC version guard.
293         (_WIN32_WINNT, _WIN32_IE): Always use symbolic version comparisons.
294         (SNDMSG, POSTMSG) [ifndef]: Remove guard condition; it prevents GCC
295         from checking consistency of alternative definition sources.
296         (__AW_SUFFIXED__): Use it; it improves robustness of...
297         [UNICODE vs. ! UNICODE]: ...generic definitions.
298         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
299
300 2018-10-29  Keith Marshall  <keith@users.osdn.me>
301
302         Clean up <wincon.h>; consolidate its version dependencies.
303
304         * include/wincon.h: Tidy layout; assert copyright.
305         [_WIN32_WINNT]: Always compare it symbolically, with respect to...
306         [_WIN32_WINNT_WIN2K, _WIN32_WINNT_WINXP, _WIN32_WINNT_VISTA]: ...each
307         of these; group and consolidate respective version dependencies.
308         (FOREGROUND_BLUE, FOREGROUND_GREEN, FOREGROUND_RED)
309         (FOREGROUND_INTENSITY, BACKGROUND_BLUE, BACKGROUND_GREEN)
310         (BACKGROUND_RED, BACKGROUND_INTENSITY, COMMON_LVB_LEADING_BYTE)
311         (COMMON_LVB_TRAILING_BYTE, COMMON_LVB_GRID_HORIZONTAL)
312         (COMMON_LVB_GRID_LVERTICAL, COMMON_LVB_GRID_RVERTICAL)
313         (COMMON_LVB_REVERSE_VIDEO, COMMON_LVB_UNDERSCORE, CTRL_C_EVENT)
314         (CTRL_BREAK_EVENT, CTRL_CLOSE_EVENT, CTRL_LOGOFF_EVENT)
315         (CTRL_SHUTDOWN_EVENT, ENABLE_LINE_INPUT, ENABLE_ECHO_INPUT)
316         (ENABLE_PROCESSED_INPUT, ENABLE_WINDOW_INPUT, ENABLE_MOUSE_INPUT)
317         (ENABLE_INSERT_MODE, ENABLE_QUICK_EDIT_MODE, ENABLE_EXTENDED_FLAGS)
318         (ENABLE_AUTO_POSITION, ENABLE_VIRTUAL_TERMINAL_INPUT)
319         (ENABLE_PROCESSED_OUTPUT, ENABLE_WRAP_AT_EOL_OUTPUT)
320         (ENABLE_VIRTUAL_TERMINAL_PROCESSING, DISABLE_NEWLINE_AUTO_RETURN)
321         (ENABLE_LVB_GRID_WORLDWIDE, KEY_EVENT, MOUSE_EVENT)
322         (WINDOW_BUFFER_SIZE_EVENT, MENU_EVENT, FOCUS_EVENT, CAPSLOCK_ON)
323         (ENHANCED_KEY, RIGHT_ALT_PRESSED, LEFT_ALT_PRESSED)
324         (RIGHT_CTRL_PRESSED, LEFT_CTRL_PRESSED, SHIFT_PRESSED, NUMLOCK_ON)
325         (SCROLLLOCK_ON, FROM_LEFT_1ST_BUTTON_PRESSED)
326         (FROM_LEFT_2ND_BUTTON_PRESSED, FROM_LEFT_3RD_BUTTON_PRESSED)
327         (FROM_LEFT_4TH_BUTTON_PRESSED, RIGHTMOST_BUTTON_PRESSED, MOUSE_MOVED)
328         (DOUBLE_CLICK, MOUSE_WHEELED, MOUSE_HWHEELED, CONSOLE_FULLSCREEN)
329         (CONSOLE_FULLSCREEN_HARDWARE, CONSOLE_FULLSCREEN_MODE)
330         (CONSOLE_WINDOWED_MODE, CONSOLE_NO_SELECTION)
331         (CONSOLE_SELECTION_IN_PROGRESS, CONSOLE_SELECTION_NOT_EMPTY)
332         (CONSOLE_MOUSE_SELECTION, CONSOLE_MOUSE_DOWN, HISTORY_NO_DUP_FLAG):
333         Redefine, expressing all values in hexadecimal rather than decimal;
334         this is consistent with Microsoft documentation, and it is also more
335         logical, since all represent bit-flags, bit-fields, or bit-masks.
336
337 2018-10-24  Keith Marshall  <keith@users.osdn.me>
338
339         Make <wincon.h> header effectively self-contained.
340
341         * include/wincon.h [_WIN32_WINNT < 0x0600]: Include <windef.h>...
342         [_WIN32_WINNT >= 0x0600]: ...but, Vista and later need <wingdi.h>
343         [__GNUC__ >= 3]: Remove condition; used only in association with...
344         (#pragma GCC system_header): ...this, it is redundant in this context.
345         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them as appropriate.
346
347 2018-10-24  David Gressett  <texasgaidheal@users.osdn.me>
348
349         Improve WinXP/Vista console I/O support.
350
351         * include/wincon.h (AddConsoleAlias, GetConsoleAlias)
352         (GetConsoleAliases, GetConsoleAliasExes, GetConsoleAliasesLength)
353         (GetConsoleAliasExesLength, GetConsoleOriginalTitle): New function
354         name aliases; define them, mapping them conditionally to represent...
355         [UNICODE]: ...their corresponding UTF-16LE function names, else...
356         [!UNICODE]: ...their corresponding ASCII/DBCS function names.
357         (COMMON_LVB_LEADING_BYTE, COMMON_LVB_TRAILING_BYTE
358         (COMMON_LVB_GRID_HORIZONTAL, COMMON_LVB_GRID_LVERTICAL)
359         (COMMON_LVB_GRID_RVERTICAL, COMMON_LVB_REVERSE_VIDEO)
360         (COMMON_LVB_UNDERSCORE, ENABLE_VIRTUAL_TERMINAL_INPUT)
361         (ENABLE_VIRTUAL_TERMINAL_PROCESSING, DISABLE_NEWLINE_AUTO_RETURN)
362         (ENABLE_LVB_GRID_WORLDWIDE,(MOUSE_HWHEELED): Define them.
363         (GetConsoleAliasA, GetConsoleAliasW, HandlerRoutine): Declare.
364         (CONSOLE_FULLSCREEN, CONSOLE_FULLSCREEN_HARDWARE): Define when...
365         [_WIN32_WINNT >= 0x0500]: ...this prevails; additionally...
366         (GetConsoleFontSize): ...declare function.
367         (CONSOLE_NO_SELECTION, CONSOLE_SELECTION_NOT_EMPTY)
368         (CONSOLE_SELECTION_IN_PROGRESS, CONSOLE_MOUSE_SELECTION)
369         (CONSOLE_MOUSE_DOWN): Define them; make them visible only when...
370         [_WIN32_WINNT >= 0x0501]: ...this prevails.
371         (struct _CONSOLE_FONT_INFO): Make it visible, only when...
372         [_WIN32_WINNT >= 0x0501]: ...this prevails; when visible, map it to...
373         (CONSOLE_FONT_INFO, PCONSOLE_FONT_INFO): ...these typedefs.
374         (struct _CONSOLE_SELECTION_INFO): Declare it; visible only when...
375         [_WIN32_WINNT >= 0x0501]: ...this prevails; when visible, map it to...
376         (CONSOLE_SELECTION_INFO, PCONSOLE_SELECTION_INFO): ...these typedefs.
377         [_WIN32_WINNT >= 0x0501] (AddConsoleAliasA, AddConsoleAliasW)
378         (GetConsoleAliasesA, GetConsoleAliasesW, GetConsoleAliasExesA)
379         (GetConsoleAliasExesW, GetConsoleAliasesLengthA)
380         (GetConsoleAliasesLengthW, GetConsoleAliasExesLengthA)
381         (GetConsoleAliasExesLengthW, GetConsoleSelectionInfo)
382         (GetCurrentConsoleFont): Declare functions.
383         [_WIN32_WINNT >= 0x0600] (HISTORY_NO_DUP_FLAG): Define it.
384         (struct _CONSOLE_FONT_INFOEX): New structure; declare it only when...
385         [_WIN32_WINNT >= 0x0600]: ...this prevails; when declared, map to...
386         (CONSOLE_FONT_INFOEX, PCONSOLE_FONT_INFOEX): ...these typedefs.
387         (CONSOLE_HISTORY_INFO, PCONSOLE_HISTORY_INFO): New typedefs; they
388         map to an anonymous structure, and are visible only when...
389         [_WIN32_WINNT >= 0x0600]: ...this prevails.
390         (struct _CONSOLE_READCONSOLE_CONTROL): New structure; declare when...
391         [_WIN32_WINNT >= 0x0600]: ...this prevails; when declared, map to...
392         (CONSOLE_READCONSOLE_CONTROL, PCONSOLE_READCONSOLE_CONTROL): ...these.
393         (struct _CONSOLE_SCREEN_BUFFER_INFOEX): New structure; declare when...
394         [_WIN32_WINNT >= 0x0600]: ...this prevails; when declared, map to...
395         (CONSOLE_SCREEN_BUFFER_INFOEX, PCONSOLE_SCREEN_BUFFER_INFOEX):
396         ...these typedefs.
397         [_WIN32_WINNT >= 0x0600] (GetConsoleHistoryInfo)
398         (GetConsoleOriginalTitleA, GetConsoleOriginalTitleW)
399         (GetConsoleScreenBufferInfoEx, GetCurrentConsoleFontEx)
400         (SetConsoleHistoryInfo, SetConsoleScreenBufferInfoEx)
401         (SetCurrentConsoleFontEx): Declare functions.
402
403 2018-09-03  Keith Marshall  <keith@users.osdn.me>
404
405         Prepare and publish MinGW.org WSL-5.1.1 release.
406
407         * All files (wsl-5.1.1-release): Tag assigned.
408
409 2018-07-29  Keith Marshall  <keith@users.osdn.me>
410
411         Don't restrict <winerror.h> exposure when including <winsock.h>
412
413         * include/winerror.h [__WINSOCK_H_SOURCED__]: Remove filters.
414         (__WINSOCK_V1_ERRORS__, __WINSOCK_V2_ERRORS__): Do not define; delete
415         all dependent filter references.
416
417 2018-07-11  Keith Marshall  <keith@users.osdn.me>
418
419         Make <wincrypt.h> header effectively self-contained.
420
421         * include/wincrypt.h: Include <winbase.h>
422
423 2018-07-11  Keith Marshall  <keith@users.osdn.me>
424
425         Correct <wincrypt.h> typographic errors; fix issue [#38391]
426
427         * include/wincrypt.h (CALG_TLS1PRF): Delete symbolic reference to...
428         (ALG_CLASS_DHASH): ...this; there is no such symbol; replace it with...
429         (ALG_CLASS_HASH): ...this, which represents the correct reference.
430         (struct _CRYPTOAPI_BLOB): Delete extraneous "typedef" keyword; this
431         struct definition is not directly associated with any type name.
432         (struct _SSL_EXTRA_CERT_CHAIN_POLICY_PARA): Likewise.
433
434 2018-02-26  Keith Marshall  <keith@users.osdn.me>
435
436         Prepare and publish MinGW.org WSL-5.1 release.
437
438         * All files (wsl-5.1-release): Tag assigned.
439
440 2018-02-24  Keith Marshall  <keith@users.osdn.me>
441
442         Make <iptypes.h> header effectively self-contained.
443
444         * include/iptypes.h: Assert copyright; tidy layout.
445         Include <windef.h>; it is required for self-containment.
446         (__need_time_t): Define for selective inclusion of <sys/types.h>
447         (_BEGIN_C_DECLS, _END_C_DECLS): Use them as appropriate.
448         (_WIN32_WINNT): Always compare it symbolically.
449         (__dhcp_time_t): New temporary data type macro; define it...
450         [_WIN64]: ...as equivalent to __time64_t, otherwise...
451         [!_WIN64]: ...equivalent to __time32_t, and then...
452         (struct _IP_ADAPTER_INFO): ...use it as the data type for...
453         (LeaseObtained, LeaseExpires): ...these fields.
454
455 2017-12-20  Keith Marshall  <keith@users.osdn.me>
456
457         Make <winreg.h> header effectively self-contained.
458
459         * include/winreg.h: Include <winbase.h>, thus achieving effective
460         self-containment; since this also indirectly includes <_mingw.h>,
461         there is no longer any need to include it directly.
462
463 2017-12-20  Keith Marshall  <keith@users.osdn.me>
464
465         Clean up, following issue [#2262] patch application.
466
467         * include/winreg.h: Tidy layout; correct copyright assertion.
468         (_BEGIN_C_DECLS, _END_C_DECLS): Use them, as appropriate.
469         [UNICODE] (__AW): Do not use deleted macro; replace it with...
470         [UNICODE] (__AW_ALIAS__): ...this, for conditional typedef mapping...
471         [UNICODE] (VALENT, PVALENT): ...of these; similarly replace with...
472         [UNICODE] (__AW_SUFFIXED__): ...this, to define function mappings...
473         [UNICODE] (AbortSystemShutdown, InitiateSystemShutdown)
474         (RegConnectRegistry, RegCreateKey, RegCreateKeyEx, RegDeleteKey)
475         (RegDeleteValue, RegEnumKey, RegEnumKeyEx, RegEnumValue, RegLoadKey)
476         (RegOpenKey, RegOpenKeyEx, RegQueryInfoKey, RegQueryMultipleValues)
477         (RegQueryValue, RegQueryValueEx, RegReplaceKey, RegRestoreKey)
478         (RegSaveKey, RegSetValue, RegSetValueEx, RegUnLoadKey, RegSaveKeyEx)
479         (RegDeleteKeyTransacted, RegDeleteKeyValue, RegDeleteTree, RegGetValue)
480         (RegLoadMUIString, RegOpenKeyTransacted, RegSetKeyValue)
481         (RegDeleteKeyEx, RegCopyTree, RegCreateKeyTransacted): ...for these.
482         (RegDeleteKeyEx, RegDeleteKeyExA, RegDeleteKeyExW): Fix regression;
483         all "4.x" branches specified these incorrectly, dependent on...
484         [_WIN32_WINNT >= _WIN32_WINNT_WIN2K]: ...this condition, whereas the
485         "legacy" branch, whence the "5.x" branches are propagated, correctly
486         required an alternative condition which is the equivalent of...
487         [_WIN32_WINNT >= _WIN32_WINNT_WS03]: ...this; revert it.
488
489 2017-12-20  Sebastián Puebla  <spuebla@users.sourceforge.net>
490
491         Update registry management API, per issue [#2262].
492
493         * include/winreg.h: Merge changes from 4.1-dev branch.
494         (REG_LATEST_FORMAT, REG_NO_COMPRESSION, REG_OPTION_BACKUP_RESTORE)
495         (REG_STANDARD_FORMAT, RRF_RT_ANY, RRF_RT_DWORD, RRF_RT_QWORD)
496         (RRF_RT_REG_BINARY, RRF_RT_REG_DWORD, RRF_RT_REG_EXPAND_SZ)
497         (RRF_RT_REG_MULTI_SZ, RRF_RT_REG_NONE, RRF_RT_REG_QWORD, RRF_RT_REG_SZ)
498         (RRF_NOEXPAND, RRF_SUBKEY_WOW6464KEY, RRF_SUBKEY_WOW6432KEY)
499         (RRF_ZEROONFAILURE): New manifest constants; define them.
500         (RegDisablePredefinedCache, RegOpenCurrentUser, RegOpenUserClassesRoot)
501         (RegOverridePredefKey): Add previously omitted function prototypes.
502         [_WIN32_WINNT >= _WIN32_WINNT_WINXP] (RegSaveKeyEx): Define...
503         [!defined UNICODE] (__AW): ...mapping it for SBCS/MBCS case, or...
504         [defined UNICODE] (__AW): ...for UTF-16LE case to either one of...
505         (RegSaveKeyExA, RegSaveKeyExW): ...these, respectively, and...
506         [_WIN32_WINNT >= _WIN32_WINNT_WINXP]: ...declare function prototypes.
507         [_WIN32_WINNT >= _WIN32_WINNT_WS03] (RegDisableReflectionKey)
508         (RegEnableReflectionKey, RegQueryReflectionKey): Declare prototypes.
509         [_WIN32_WINNT >= _WIN32_WINNT_VISTA] (RegCopyTreeA, RegCopyTreeW)
510         (RegCreateKeyTransactedA, RegCreateKeyTransactedW)
511         (RegDeleteKeyTransactedA, RegDeleteKeyTransactedW)
512         (RegDeleteKeyValueA, RegDeleteKeyValueW)
513         (RegDeleteTreeA, RegDeleteTreeW, RegDisablePredefinedCacheEx)
514         (RegGetValueA, RegGetValueW, RegLoadMUIStringA, RegLoadMUIStringW)
515         (RegOpenKeyTransactedA, RegOpenKeyTransactedW)
516         (RegSetKeyValueA, RegSetKeyValueW): Declare prototypes.
517         [_WIN32_WINNT >= _WIN32_WINNT_VISTA] (RegCopyTree)
518         (RegCreateKeyTransacted, RegDeleteKeyTransacted, RegDeleteKeyValue)
519         (RegDeleteTree, RegGetValue, RegLoadMUIString, RegOpenKeyTransacted)
520         (RegSetKeyValue): Define, mapping each to its respective function...
521         [!defined UNICODE] (__AW): ...for the SBCS/MBCS case, or...
522         [defined UNICODE] (__AW): ...for the UTF-16LE case.
523
524         * lib/kernel32.def (RegDeleteTreeA@8, RegDeleteTreeW@8)
525         (RegDisablePredefinedCacheEx@0, RegGetValueA@28, RegGetValueW@28)
526         (RegLoadMUIStringA@28, RegLoadMUIStringW@28, RegSaveKeyExA@16)
527         (RegSaveKeyExW@16): Remove them; relocate them to...
528         * lib/advapi32.def (RegDeleteTreeA@8, RegDeleteTreeW@8)
529         (RegDisablePredefinedCacheEx@0, RegGetValueA@28, RegGetValueW@28)
530         (RegLoadMUIStringA@28, RegLoadMUIStringW@28, RegSaveKeyExA@16)
531         (RegSaveKeyExW@16): ...their correct location, here.
532         (RegCopyTreeA@12, RegCopyTreeW@12, RegQueryReflectionKey@8)
533         (RegCreateKeyTransactedA@44, RegCreateKeyTransactedW@44)
534         (RegDeleteKeyTransactedA@24, RegDeleteKeyTransactedW@24)
535         (RegDeleteKeyValueA@12, RegDeleteKeyValueW@12)
536         (RegDisableReflectionKey@4, RegEnableReflectionKey@4)
537         (RegOpenKeyTransactedA@28, RegOpenKeyTransactedW@28)
538         (RegSetKeyValueA@24, RegSetKeyValueW@24): Add these.
539
540 2017-12-16  Keith Marshall  <keith@users.osdn.me>
541
542         Provide default definition for _WIN32_IE feature test macro.
543
544         * include/sdkddkver.h [!defined _WIN32_IE]: Define it, with...
545         (_WIN32_IE_IE50): ...this default value.
546
547         * include/commctrl.h (_WIN32_IE): Delete definition hint; it offered
548         a conflicting proposal for the default value.
549
550 2017-12-06  Keith Marshall  <keith@users.osdn.me>
551
552         Prepare and publish MinGW.org WSL-5.0.2 release.
553
554         * All files (wsl-5.0.2-release): Tag assigned.
555
556 2017-11-28  Keith Marshall  <keith@users.osdn.me>
557
558         Make <wsnetbs.h> header effectively self-contained.
559
560         * include/wsnetbs.h: Assert copyright; tidy layout; include
561         "_winsock.h", so making this header effectively self-contained, and
562         thus relieving the user of a responsibility for ensuring that some
563         other appropriate WinSock header has been included first.
564
565 2017-11-28  Keith Marshall  <keith@users.osdn.me>
566
567         Factor <winsock.h> duplicate content out of <winsock2.h>
568
569         * include/winsock2.h: Remove all declarations and definitions which
570         are identically specified in <winsock.h>, but keep them in scope by...
571         [! defined _WINSOCK_H]: ...including <winsock.h> itself; override any
572         declarations and definitions therefrom, which introduce conflicts.
573         [defined _WINSOCK_H]: Diagnose misuse; suppress all further
574         definitions and declarations.
575
576         * include/winsock.h (SOMAXCONN): Add comment; note disparity between
577         WinSock v1.1 and WinSock v2, the latter of which will override when
578         correctly included by <winsock2.h>
579
580 2017-11-24  Keith Marshall  <keith@users.osdn.me>
581
582         Make <winsock.h> and <winsock2.h> duplicate code congruent.
583
584         * include/winsock.h (SOMAXCONN): Move definition into...
585         [!__INSIDE_MSYS__]: ...this guarded scope.
586
587         * include/winsock2.h: Rearrange as necessary.
588         [_BEGIN_C_DECLS, _END_C_DECLS]: Keep them balanced.
589         (_USE_SYS_TYPES_FD_SET): Define and use, as in <winsock.h>
590         [!_WINSOCK_ANOMALOUS_TYPEDEFS] (FD_SET): Declare function, not type.
591         [!_WINSOCK_ANOMALOUS_TYPEDEFS] (PFD_SET, LPFD_SET): Suppress typedefs.
592         (FD_SET, FD_ISSET, FD_CLR, FD_ZERO): Reimplement, as in <winsock.h>
593         (FD_READ_BIT, FD_WRITE_BIT, FD_OOB_BIT, FD_ACCEPT_BIT)
594         (FD_CONNECT_BIT, FD_CLOSE_BIT, FD_QOS_BIT, FD_GROUP_QOS_BIT)
595         (FD_ROUTING_INTERFACE_CHANGE_BIT, FD_ADDRESS_LIST_CHANGE_BIT)
596         (FD_MAX_EVENTS): Enumerate them, as in <winsock.h>
597         [!(defined __INSIDE_CYGWIN__ || defined __INSIDE_MSYS__)]: Recast...
598         [!defined __INSIDE_MSYS__]: ...as this, throughout.
599         (gethostname): Update function prototype, adding...
600         (WINSOCK_API_LINKAGE): ...this DLL import control attribute.
601
602         * include/ws2spi.h: Tidy layout; assert copyright.
603         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
604         (LPFD_SET): Delete all type references; use...
605         (fd_set *): ...this instead.
606
607 2017-11-14  Keith Marshall  <keith@users.osdn.me>
608
609         Establish default selection for WinSock API declaration.
610
611         * include/windows.h include/nspapi.h: Include...
612         * include/_winsock.h: ...this new system private header; it selects...
613         [_WIN32_WINNT >= _WIN32_WINNT_NT4]: ...WinSock v2 API declarations, as
614         provided by conditional inclusion of <winsock2.h>, otherwise...
615         [_WIN32_WINNT < _WIN32_WINNT_NT4]: ...WinSock v1.1 API declarations,
616         as provided by inclusion of <winsock.h>
617
618         * tests/headers.at <_winsock.h>: Add reference.
619
620 2017-11-14  Keith Marshall  <keith@users.osdn.me>
621
622         Update gethostname() declaration; drop Cygwin specificity.
623
624         * include/winsock.h (gethostname): Declare unconditionally; add...
625         (WINSOCK_API_LINKAGE): ...this DLL import control attribute.
626         [!(defined __INSIDE_CYGWIN__ || defined __INSIDE_MSYS__)]: Recast...
627         [!defined __INSIDE_MSYS__]: ...as this, throughout.
628
629 2017-11-09  Keith Marshall  <keith@users.osdn.me>
630
631         Normalize fd_set event macros for <winsock2.h> compatibility.
632
633         * include/winsock.h (FD_READ, FD_WRITE, FD_OOB, FD_ACCEPT, FD_CONNECT)
634         (FD_CLOSE): Redefine them, deriving respective values as shifts by...
635         (FD_READ_BIT, FD_WRITE_BIT, FD_OOB_BIT, FD_ACCEPT_BIT, FD_CONNECT_BIT)
636         (FD_CLOSE_BIT): ...this new enumerated count sequence, applying each
637         count to a bit flag with value of 1, in each case respectively.
638         [_WINSOCK2_H]: Extend shift count enumeration, to include...
639         (FD_QOS_BIT, FD_GROUP_QOS_BIT, FD_ROUTING_INTERFACE_CHANGE_BIT)
640         (FD_ADDRESS_LIST_CHANGE_BIT): ...these additional counts; hence...
641         [_WINSOCK2_H] (FD_QOS, FD_GROUP_QOS, FD_ROUTING_INTERFACE_CHANGE)
642         [_WINSOCK2_H] (FD_ADDRESS_LIST_CHANGE): ...define each of these.
643         (FD_MAX_EVENTS): Define unconditionally; it represents a shift count
644         of 1 greater than the offset of the last defined flag; hence...
645         (FD_ALL_EVENTS): ...derive this mask for all event flags.
646
647 2017-11-09  Keith Marshall  <keith@users.osdn.me>
648
649         Filter potential WinSock v2 conflicts out of <winsock.h>
650
651         * include/winsock.h [_WINSOCK2_H] <mswsock.h>: Do not include it.
652         [_WINSOCK2_H] (IP_MULTICAST_IF, IP_MULTICAST_TTL, IP_MULTICAST_LOOP)
653         (IP_ADD_MEMBERSHIP, IP_DROP_MEMBERSHIP, IP_DEFAULT_MULTICAST_TTL)
654         (IP_DEFAULT_MULTICAST_LOOP, IP_MAX_MEMBERSHIPS, struct ip_mreq): Do
655         not define any of these; they are not compatible with WinSock v2.
656         [_WINSOCK2_H] (SOMAXCONN): Do not define it; it will be defined
657         appropiately in <winsock2.h>
658
659 2017-11-09  Keith Marshall  <keith@users.osdn.me>
660
661         Filter out <winsock.h> typedef anomalies.
662
663         * include/winsock.h (FD_SET, PFD_SET, LPFD_SET): If user defines...
664         [_WINSOCK_ANOMALOUS_TYPEDEFS]: ...this new feature test macro, expose
665         them as type definitions, but warn of potential conflict with...
666         [!_WINSOCK_ANOMALOUS_TYPEDEFS] (FD_SET): ...this POSIX.1 mandated
667         function; declare its prototype.
668
669 2017-11-08  Keith Marshall  <keith@users.osdn.me>
670
671         Overhaul WinSock fd_set content management macros.
672
673         * include/winsock.h (FD_SET, FD_ISSET, FD_CLR, FD_ZERO): Replace the
674         original implementations of each of these macros, redirecting to...
675         (__FD_SET, __FD_ISSET, __FD_CLR, __FD_ZERO): ...these new, equivalent
676         inline functions, respectively; these are more robust, and correct a
677         defect in the original FD_SET macro implementation, whereby duplicate
678         descriptors could be added to an fd_set array, but would not then be
679         removed by the corresponding FD_CLR macro.
680
681         * tests/winsock.at (MINGW_AT_CHECK_WINSOCK): Ensure that all test
682         programs are linked with -lwsock32 or -lws2_32, as appropriate; the
683         __FD_SET and __FD_ISSET functions are dependent on the __WSAFDIsSet()
684         function, which is implemented in each of these libraries.
685
686 2017-11-07  Keith Marshall  <keith@users.osdn.me>
687
688         Identify features which have been deprecated in WinSock v2.
689
690         * include/winsock.h (__WINSOCK2_DEPRECATED): Define as nothing.
691         * include/winsock2.h (__WINSOCK2_DEPRECATED): Define as equivalent...
692         (__MINGW_ATTRIB_DEPRECATED): ...to this.
693
694         * include/winsock.h include/winsock2.h: Qualify...
695         (WSAIsBlocking, WSAUnhookBlockingHook, WSASetBlockingHook)
696         (WSACancelBlockingCall): ...each of these function prototypes, with...
697         (__WINSOCK2_DEPRECATED): ...this attribute.
698
699 2017-11-07  Keith Marshall  <keith@users.osdn.me>
700
701         Adopt system naming convention for USE_SYS_TYPES_FD_SET macro.
702
703         * include/winsock.h (USE_SYS_TYPES_FD_SET): Deprecate it; use...
704         (_USE_SYS_TYPES_FD_SET): ...this alternative; it is named to conform
705         with preferred convention for system feature test macros.
706
707 2017-11-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
708
709         Use WINSOCK_API_LINKAGE consistently in WinSock headers.
710
711         * include/winsock.h (WINSOCK_API_LINKAGE): Define, and prefix to...
712         (accept, bind, closesocket, connect, ioctlsocket, inet_addr, inet_ntoa)
713         (getpeername, getsockname, getsockopt, listen, recv, recvfrom, send)
714         (sendto, setsockopt, shutdown, socket, gethostbyaddr, gethostbyname)
715         (getservbyport, getservbyname, getprotobynumber, getprotobyname)
716         (WSAStartup, WSACleanup, WSASetLastError, WSAGetLastError)
717         (WSAIsBlocking, WSAUnhookBlockingHook, WSASetBlockingHook)
718         (WSACancelBlockingCall, WSAAsyncGetServByName, WSAAsyncGetServByPort)
719         (WSAAsyncGetProtoByName, WSAAsyncGetProtoByNumber, WSAAsyncSelect)
720         (WSAAsyncGetHostByName, WSAAsyncGetHostByAddr, WSACancelAsyncRequest)
721         (htonl, ntohl, htons, ntohs, select): ...these function prototypes.
722
723         * include/winsock2.h (WINSOCK_API_LINKAGE): Remove it from...
724         (LPFN_WSASTARTUP): ...this typedef; it is inappropriate.
725
726 2017-10-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
727
728         Refactor <wtypes.h> vs. <nspapi.h> and WinSock headers.
729
730         * include/wtypes.h: Tidy layout; assert copyright.
731         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
732         [__NSPAPI_H_SOURCED__]: Restrict exposure of declared content to...
733         [!__BLOB_DATA_TYPE_DEFINED] (BLOB, PBLOB, LPBLOB): ...these; define...
734         (__BLOB_DATA_TYPE_DEFINED__): ...this internal guard; it renames...
735         (__BLOB_T_DEFINED): ...this; do not define...
736         (_WTYPES_H): ...this external guard.
737
738         * include/nspapi.h: Tidy layout; assert copyright.
739         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
740         (__CSADDR_T_DEFINED): Do not define; it is no longer required.
741         [__WINSOCK2_H_SOURCED__]: Restrict exposure of declared content to...
742         (struct _CSADDR_INFO): ...this, as an incomplete type, along with...
743         (CSADDR_INFO, PCSADDR_INFO, LPCSADDR_INFO): ...these typedefs; also...
744         (SOCKET_ADDRESS, PSOCKET_ADDRESS, LPSOCKET_ADDRESS): ...define fully.
745         [__WINSOCK2_H_SOURCED__] (_NSPAPI_H): Do not define external guard.
746         [!__WINSOCK2_H_SOURCED__] (struct _CSADDR_INFO): Define fully.
747         (__BLOB_T_DEFINED, BLOB, PBLOB, LPBLOB): Do not define; instead...
748         (__NSPAPI_H_SOURCED__): ...define this, temporarily; include wtypes.h
749         [!__WINSOCK2_H_SOURCED__ && _WIN32_WINNT >= WIN2K]: Include winsock2.h
750         [!__WINSOCK2_H_SOURCED__ && _WIN32_WINNT < WIN2K]: Include winsock.h
751         [UNICODE vs. !UNICODE]: Discriminate generic symbol names, using...
752         (__AW_SUFFIXED__): ...this, to facilitate definition of each of...
753         (SetService, GetAddressByName, _SERVICE_INFO): ...these, and...
754         (__AW_ALIAS__): ...this, for definition of each of...
755         (SERVICE_INFO, LPSERVICE_INFO): ...these.
756
757         * include/winsock2.h (__WINSOCK2_H_SOURCED__): Define it temporarily.
758         (__CSADDR_T_DEFINED, struct _CSADDR_INFO, CSADDR_INFO, PCSADDR_INFO)
759         (LPCSADDR_INFO, __BLOB_T_DEFINED, BLOB, PBLOB, LPBLOB): Do not define;
760         include nspapi.h selectively, to acquire them.
761
762 2017-09-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
763
764         Factor <winerror.h> duplicate content out of winsock headers.
765
766         * include/winsock.h include/winsock2.h [!defined WSABASEERR]: Delete
767         conditional block, and all of its content; selectively include...
768         * include/winerror.h [__WINSOCK_H_SOURCED__]: ...this instead.
769         [__WINSOCK_H_SOURCED__] (_WINERROR_H): Do not define it.
770         (__WINSOCK_V1_ERRORS__, __WINSOCK_V2_ERRORS__): New temporary macros;
771         define them, to segregate WSA error messages applicable to WinSock v2
772         only, from those applicable to both WinSock v1.1 and WinSock v2.
773         (__WSA_ERRNO): New macro; use it to redefine all WSA specific error
774         codes, except WSABASEERR, relative to WSABASEERR itself.
775
776 2017-09-15  Keith Marshall  <keithmarshall@users.sourceforge.net>
777
778         Factor <sys/time.h> duplicate content out of winsock headers.
779
780         * include/winsock.h include/winsock2.h [_TIMEVAL_DEFINED]: Delete
781         conditional block, and all its content; include <sys/time.h> instead.
782         (__WINSOCK_H_SOURCED__): New macro; define it temporarily, only while
783         processing this header, such that only selected content from other
784         internally referenced headers is exposed.
785
786 2017-09-09  Keith Marshall  <keithmarshall@users.sourceforge.net>
787
788         Source BSD non-standard type definitions from mingwrt header.
789
790         * include/winsock.h include/winsock2.h [_BSDTYPES_DEFINED]: Delete
791         conditional block, and its entire type definition content; include...
792         * include/sys/bsdtypes.h: ...this common file instead; it defines...
793         (u_char, u_int, u_long, u_short): ...these non-standard data types.
794
795 2017-09-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
796
797         Correct misuse of __INSIDE_MSYS__ feature test.
798
799         * include/winsock2.h [!__INSIDE_MSYS__]: One of several instances
800         omits "defined" operator; it should be expressed consistently as...
801         [! defined __INSIDE_MSYS__]: ...this; correct it.
802
803 2017-09-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
804
805         Prepare for <winsock.h> vs. <winsock2.h> refactoring.
806
807         * include/winsock.h: Tidy layout; assert copyright.
808         (_BEGIN_C_DECLS, _END_C_DECLS): Use them to avoid C++ name mangling.
809
810         * include/winsock2.h: Assert copyright; tidy layout, ensuring that all
811         sections, which are common with <winsock.h>, are laid out congruently.
812         (_BEGIN_C_DECLS, _END_C_DECLS): Use them to avoid C++ name mangling.
813         (SD_RECEIVE, SD_SEND, SD_BOTH): Delete duplicate constant definitions.
814         (SO_DONTLINGER, MSG_MAXIOVLEN): Likewise, delete duplicate definitions.
815         (__AW_ALIAS__, __AW_SUFFIXED__): Use them, to avoid reproduction of...
816         [UNICODE]: ...alternative typedefs, and function name aliases...
817         [!UNICODE]: ...versus this case.
818
819 2017-08-28  Keith Marshall  <keithmarshall@users.sourceforge.net>
820
821         Resolve secondary issue arising from MinGW-Bug [#2350]
822
823         * include/winuser.h (GetTitleBarInfo)
824         [_WIN32_WINDOWS >= _WIN32_WINDOWS_98]: Remove exposure restriction;
825         it conflicted with current MSDN documentation, so now falls within...
826         [_WIN32_WINNT >= Win2K || _WIN32_WINDOWS >= Win98]: ...this.
827
828 2017-08-28  Keith Marshall  <keithmarshall@users.sourceforge.net>
829
830         Resolve MinGW-Bug [#2350]
831
832         * include/winuser.h (GetTitleBarInfo): Move prototype after...
833         (PTITLEBARINFO): ...this type definition; it is used as a function
834         argument type, so must be defined beforehand.
835
836 2017-08-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
837
838         Extend testsuite to cover winsock fd_set macro operations.
839
840         * tests/winsock.at: New file; it implements appropriate tests, and
841         enables use of "-k winsock", "-k winsock2", and "-k fd_set" autotest
842         keywords to invoke them, (e.g. make check TESTSUITEFLAGS='-k fd_set').
843
844         * tests/testsuite.at.in (winsock.at): Integrate it.
845         (MINGW_AT_CHECK_RUN): Accept a variant list of libraries when linking.
846         (MINGW_AT_LINK_LIBS_DEFAULT): New macro; it establishes the initial
847         default list of libraries, or resets the list to this initial default.
848         (MINGW_AT_LINK_LIBS): New macro; it establishes an augmented list of
849         library specifications, to be used until subsequently reset.
850
851 2017-07-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
852
853         Prepare and tag for release of MinGW.org WSL-5.0.1
854
855         * All files (wsl-5.0.1-release): Tag assigned.
856
857 2017-07-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
858
859         Automate testsuite dependency generation.
860
861         * tests/Makefile.in (testsuite) [$srcdir/*.at]: Automatically
862         enumerate all such wildcard matches as prerequisites, instead of...
863         (headers.at): ...this sole explicit dependency.
864
865 2017-06-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
866
867         Make <winnt.h> header effectively self-contained.
868
869         * include/winnt.h (_WINNT_H): Defer definition unless included via...
870         (windef.h): ...this; include it, to enforce inclusion order, then...
871         [_WINNT_H]: ...re-evaluate it, to avoid recursive inclusion loop.
872
873 2017-06-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
874
875         Consolidate <winuser.h> version specific conditionals.
876
877         * include/winuser.h: Reorganize file content; group manifest constant
878         definitions into one nested collection of conditional blocks, with one
879         block per Windows version evolution; do likewise for type definitions
880         and function prototypes which are always exposed, and separately...
881         [! defined NOGDI]: ...for those which may be suppressed, when GDI
882         support is not required.
883
884 2017-06-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
885
886         Make <winuser.h> header effectively self-contained.
887
888         * include/winuser.h (stdarg.h): Include it, in addition to...
889         [NOGDI] (windef.h): ...this, directly or otherwise indirectly via...
890         [!NOGDI] (wingdi.h): ...this, for effective self-containment.
891
892 2017-06-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
893
894         Consolidate <wingdi.h> version specific conditionals.
895
896         * include/wingdi.h: Reorganize file content; group manifest constant
897         definitions into a single nested collection of conditional blocks, for
898         those definitions which are common to both Win9x and WinNT, with one
899         block per Windows version evolution, sorting alphabetically within
900         each block; do likewise for additional manifest constant definitions
901         which are specific to WinNT, and also for data type definitions and
902         function prototypes.
903
904 2017-06-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
905
906         Tidy, and make <wingdi.h> header effectively self-contained.
907
908         * include/wingdi.h: Tidy layout; assert copyright.
909         (windef.h): Include it; this achieves self-containment.
910         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them.
911         [UNICODE vs. !UNICODE]: Discriminate generic symbol names, using...
912         (__AW_ALIAS__): ...this, when defining each of...
913         (DEVMODE, PDEVMODE, LPDEVMODE, DOCINFO, LPDOCINFO, LOGCOLORSPACE)
914         (LOGFONT, PLOGFONT, LPLOGFONT, EXTLOGFONT, PEXTLOGFONT, LPEXTLOGFONT)
915         (LPLOGCOLORSPACE, TEXTMETRIC, PTEXTMETRIC, LPTEXTMETRIC, GCP_RESULTS)
916         (PPOLYTEXT, LPPOLYTEXT, NEWTEXTMETRIC, PNEWTEXTMETRIC, LPNEWTEXTMETRIC)
917         (LPENUMLOGFONTEX, ENUMLOGFONTEXDV, PENUMLOGFONTEXDV, LPENUMLOGFONTEXDV)
918         (OUTLINETEXTMETRIC, POUTLINETEXTMETRIC, LPOUTLINETEXTMETRIC, POLYTEXT)
919         (LPGCP_RESULTS, DISPLAY_DEVICE, PDISPLAY_DEVICE, LPDISPLAY_DEVICE)
920         (NEWTEXTMETRICEX, ENUMLOGFONT, LPENUMLOGFONT, ENUMLOGFONTEX): ...these.
921         (__AW_SUFFIXED__): Similarly, use this when declaring each of...
922         (FONTENUMPROC, ICMENUMPROC, AddFontResource, AddFontResourceEx,
923         (CopyEnhMetaFile, CopyMetaFile, CreateColorSpace, CreateEnhMetaFile)
924         (CreateDC, CreateFont, CreateFontIndirect, CreateIC, CreateMetaFile)
925         (CreateScalableFontResource, DeviceCapabilities, EnumFontFamilies)
926         (EnumFontFamiliesEx, EnumFonts, EnumICMProfiles, ExtTextOut)
927         (GetCharABCWidths, GetCharABCWidthsFloat, GetCharacterPlacement)
928         (GetCharWidth32, GetCharWidth, GetCharWidthFloat, GetEnhMetaFile)
929         (GetEnhMetaFileDescription, GetGlyphOutline, GetICMProfile)
930         (GetKerningPairs, GetLogColorSpace, GetMetaFile, GetObject)
931         (GetOutlineTextMetrics, GetTextExtentExPoint, GetTextExtentPoint)
932         (GetTextExtentPoint32, GetTextFace, GetTextMetrics, PolyTextOut,
933         (RemoveFontResource, RemoveFontResourceEx, ResetDC, SetICMProfile)
934         (StartDoc, TextOut, UpdateICMRegKey, wglUseFontBitmaps)
935         (wglUseFontOutlines, GetGlyphIndices): ...these.
936
937 2017-05-31  Keith Marshall  <keithmarshall@users.sourceforge.net>
938
939         Declare CONDITION_VARIABLE API, per feature request [#2314]
940
941         * include/winbase.h [_WIN32_WINNT >= _WIN32_WINNT_VISTA]
942         (CONDITION_VARIABLE, PCONDITION_VARIABLE): Define data types, and...
943         (InitializeConditionVariable, SleepConditionVariableCS)
944         (SleepConditionVariableSRW, WakeAllConditionVariable)
945         (WakeConditionVariable): ...declare prototypes.
946
947 2017-05-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
948
949         Declare SRWLOCK API, to support feature request [#2314]
950
951         * include/winbase.h [_WIN32_WINNT >= _WIN32_WINNT_VISTA]
952         (SRWLOCK, *PSRWLOCK): Define these data types, and declare...
953         (InitializeSRWLock, AcquireSRWLockExclusive, AcquireSRWLockShared)
954         (ReleaseSRWLockExclusive, ReleaseSRWLockShared): ...these prototypes.
955         [_WIN32_WINNT >= _WIN32_WINNT_WIN7] (TryAcquireSRWLockExclusive)
956         (TryAcquireSRWLockShared): Declare additional prototypes.
957
958 2017-03-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
959
960         Resolve potential <winbase.h> vs. <winerror.h> inconsistency.
961
962         * include/winerror.h: Tidy layout; assert copyright.
963
964         * include/winbase.h (WAIT_TIMEOUT): Redefine; make it identical to...
965         * include/winerror.h (WAIT_TIMEOUT): ...this equivalent; remove...
966         [!defined WAIT_TIMEOUT]: ...this conditional redefinition guard from
967         both locations; it permitted inconsistency between the two.
968
969 2017-03-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
970
971         Consolidate <winbase.h> version specific conditionals.
972
973         * include/winbase.h: Reorganize file content; group manifest constant
974         definitions into one nested collection of conditional blocks, with one
975         block per Windows version evolution, sorting alphabetically within each
976         block; do likewise for data type definitions and function prototypes.
977
978 2017-03-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
979
980         Tidy, and make <winbase.h> header effectively self-contained.
981
982         * include/w32api.h (__AW_ALIAS__): Rename original implementation...
983         (__AW_ALIAS_EX__): ...as this, retaining its encapsulation of...
984         (__AW_EXTENDED__): ...this; subsequently reimplement...
985         (__AW_ALIAS__): ...this, with original name, now encapsulating...
986         (__AW_SUFFIXED__): ...this.
987
988         * include/dbt.h (__AW_ALIAS__): Replace all references with...
989         (__AW_ALIAS_EX__): ...this renamed alternative, when defining...
990         (DEV_BROADCAST_DEVICEINTERFACE, PDEV_BROADCAST_DEVICEINTERFACE)
991         (DEV_BROADCAST_PORT, PDEV_BROADCAST_PORT): ...these.
992
993         * include/winbase.h: Tidy layout; assert copyright.
994         (stdarg.h, windef.h): Include them, to achieve self-containment.
995         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
996         [UNICODE vs. ! UNICODE]: Replace separated declarations; use...
997         [__AW_ALIAS__]: ...this, to correctly specify each of...
998         (STARTUPINFO, LPSTARTUPINFO, WIN32_FIND_DATA, PWIN32_FIND_DATA)
999         (LPWIN32_FIND_DATA, HW_PROFILE_INFO, LPHW_PROFILE_INFO, ACTCTX)
1000         (PACTCTX, PCACTCTX): ...these generic typedefs, and...
1001         [__AW_SUFFIXED__]: ...this, to correctly map each of...
1002         (ENUMRESLANGPROC, ENUMRESNAMEPROC, ENUMRESTYPEPROC, AddAtom)
1003         (AccessCheckAndAuditAlarm, BackupEventLog, BeginUpdateResource)
1004         (BuildCommDCB, BuildCommDCBAndTimeouts, CheckNameLegalDOS8Dot3)
1005         (CallNamedPipe, ClearEventLog, CommConfigDialog, CopyFile, CopyFileEx)
1006         (CreateActCtx, CreateDirectory, CreateDirectoryEx, CreateEvent)
1007         (CreateFile, CreateFileMapping, CreateHardLink, CreateJobObject)
1008         (CreateMailslot, CreateMutex, CreateNamedPipe, CreateProcess)
1009         (CreateProcessAsUser, CreateSemaphore, CreateSymbolicLink)
1010         (CreateWaitableTimer, DefineDosDevice, DeleteFile, EncryptFile)
1011         (DeleteVolumeMountPoint, DnsHostnameToComputerName, EndUpdateResource)
1012         (EnumResourceLanguages, EnumResourceNames, EnumResourceTypes)
1013         (ExpandEnvironmentStrings, FatalAppExit, FileEncryptionStatus)
1014         (FindActCtxSectionString, FindAtom, FindFirstChangeNotification)
1015         (FindFirstFile, FindFirstFileEx, FindFirstVolume, FindNextFile)
1016         (FindFirstVolumeMountPoint, FindNextVolume, FindNextVolumeMountPoint)
1017         (FindResource, FindResourceEx, FormatMessage, FreeEnvironmentStrings)
1018         (GetAtomName, GetBinaryType, GetCommandLine, GetCompressedFileSize)
1019         (GetComputerName, GetComputerNameEx, GetCurrentDirectory)
1020         (GetDefaultCommConfig, GetDiskFreeSpace, GetDiskFreeSpaceEx)
1021         (GetDllDirectory, GetDriveType, GetEnvironmentStrings)
1022         (GetEnvironmentVariable, GetFileAttributes, GetFileAttributesEx)
1023         (GetFileSecurity, GetFinalPathNameByHandle, GetFullPathName)
1024         (GetLogicalDriveStrings, GetLongPathName, GetModuleFileName)
1025         (GetModuleHandle, GetModuleHandleEx, GetNamedPipeHandleState)
1026         (GetPrivateProfileInt, GetPrivateProfileSection)
1027         (GetPrivateProfileSectionNames, GetPrivateProfileString)
1028         (GetPrivateProfileStruct, GetProfileInt, GetProfileSection)
1029         (GetProfileString, GetShortPathName, GetStartupInfo)
1030         (GetSystemDirectory, GetSystemWindowsDirectory, GetTempFileName)
1031         (GetSystemWow64Directory, GetTempPath, GetUserName, GetVersionEx)
1032         (GetVolumeInformation, GetVolumeNameForVolumeMountPoint)
1033         (GetVolumePathName, GetVolumePathNamesForVolumeName, GlobalAddAtom)
1034         (GetWindowsDirectory, GlobalFindAtom, GlobalGetAtomName)
1035         (IsBadStringPtr, LoadLibrary, LoadLibraryEx, LogonUser)
1036         (LookupAccountName, LookupAccountSid, LookupPrivilegeDisplayName)
1037         (LookupPrivilegeName, LookupPrivilegeValue, lstrcat, lstrcmp)
1038         (lstrcmpi, lstrcpy, lstrcpyn, lstrlen, MoveFile, MoveFileEx)
1039         (MoveFileWithProgress, ObjectCloseAuditAlarm, ObjectDeleteAuditAlarm)
1040         (ObjectOpenAuditAlarm, ObjectPrivilegeAuditAlarm, OpenBackupEventLog)
1041         (OpenEvent, OpenEventLog, OpenFileMapping, OpenMutex, OpenSemaphore)
1042         (OutputDebugString, PrivilegedServiceAuditAlarm, QueryDosDevice)
1043         (ReadEventLog, RegisterEventSource, RemoveDirectory, ReplaceFile)
1044         (ReportEvent, SearchPath, SetComputerName, SetCurrentDirectory)
1045         (SetDefaultCommConfig, SetDllDirectory, SetEnvironmentVariable)
1046         (SetFileAttributes, SetFileSecurity, SetFileShortName, SetVolumeLabel)
1047         (SetFirmwareEnvironmentVariable, SetVolumeMountPoint, UpdateResource)
1048         (VerifyVersionInfo, WaitNamedPipe, WritePrivateProfileSection)
1049         (WritePrivateProfileString, WritePrivateProfileStruct)
1050         (WriteProfileSection, WriteProfileString): ...these, and add...
1051         (GetCurrentHwProfile, OpenWaitableTimer, SetComputerNameEx)
1052         (GetFirmwareEnvironmentVariable): ...these previously missing generic
1053         function name aliases.
1054
1055 2017-03-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1056
1057         Refactor mingwrt and w32api common makefile content.
1058
1059         * Makefile.in (w32api-srcdist-config-files): Rename it...
1060         (w32api-srcdist-common-files): ...as this phoney build rule.
1061         (shared_include_file): New macro; define it, and include named file.
1062         (configure, config.status, Makefile, config.status.missing, _mingw.h)
1063         (w32api.h, PACKAGE_VERSION_SCRIPT, PACKAGE_VERSION_FORMAT): Factor
1064         out; relocate them to new file in common parent directory...
1065         * ../Makefile.comm: ...here.
1066
1067 2017-03-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
1068
1069         Correct a copyright notice update omission.
1070
1071         * configure.ac: Extend copyright date range to include 2017.  Also
1072         clean up superfluous trailing whitespace.
1073
1074 2017-03-09  Keith Marshall  <keithmarshall@users.sourceforge.net>
1075
1076         Fix generated header file dependencies.
1077
1078         * Makefile.in (_mingw.h, w32api): Make them depend on changes in...
1079         [VERSION.m4]: ...this; package version changes are no longer made...
1080         [configure.ac]: ...here; delete associated prerequisite reference.
1081         (distclean-local): Delete them.
1082
1083 2017-03-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
1084
1085         Prepare and tag for release of w32api-5.0 package set.
1086
1087         * All files (wsl-5.0-release): Tag assigned.
1088
1089 2017-02-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
1090
1091         Implement basic test suite infrastructure.
1092
1093         * tests: New subdirectory; it hosts...
1094         * tests/Makefile.in tests/testsuite.at.in tests/atlocal.in
1095         * tests/headers.at: ...these new files; they implement the basic test
1096         suite infrastructure, initially comprising header integrity checks.
1097
1098         * configure.ac (AC_PROG_CXX): Check it.
1099         (AC_CONFIG_TESTDIR): Configure tests subdirectory.
1100         (AC_CHECK_PROG): Check for autom4te; configure fall back if missing.
1101         (AC_CONFIG_FILES): Generate tests/atlocal, tests/testsuite.at.tmp, and
1102         tests/Makefile.
1103
1104         * Makefile.in (check test tests): New rules; all are synonymous.
1105         (check-recursive): New rule; invoked by each of the preceding three.
1106         (w32api-srcdist-testsuite-files): New rule; implement and use it...
1107         (w32api-srcdist-files): ...here.
1108
1109 2017-02-14  Alexander Krisak  <akrisak@users.sourceforge.net>
1110
1111         Add missing constant definition, per issue [#2249].
1112
1113         * include/winnt.h (JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE): Define it.
1114
1115 2017-02-10  Keith Marshall  <keithmarshall@users.sourceforge.net>
1116
1117         Avoid unnecessary duplication of configuration files.
1118
1119         * Makefile.in (vpath install-sh): Define it; it matches...
1120         (vpath %.m4): ...this; add $top_srcdir/..; search it first; delete
1121         rule for creating duplicate file reference links in $top_srcdir.
1122         (configure): Add '-I ..' option, when running autoconf.
1123         (w32api-srcdist-files): Rename it as...
1124         (w32api-srcdist-package-files): ...this; remove dependencies on...
1125         (aclocal.m4 VERSION.m4 install-sh): ...these; reinstate them in...
1126         (w32api-srcdist-config-files): ...this new distributable files
1127         enumeration goal; add it as one new prerequisite of...
1128         (w32api-srcdist-files): ...this repurposed goal; also depends on...
1129         (w32api-srcdist-package-files): ...this; populate it using...
1130         (SRCDIST_ADD): ...this macro; redefine it accordingly.
1131
1132 2016-12-08  Jerzy Tarasiuk  <jz_fuw@users.sourceforge.net>
1133
1134         Correct typo in <ddk/ntdddisk.h>; fix bug [#2323]
1135
1136         * include/ddk/ntdddisk.h (IOCTL_DISK_BASE): Correct definition;
1137         it was previously transcribed incorrectly, as being equivalent to...
1138         (FILE_TYPE_DISK): ...this, but it should have been equivalent to...
1139         (FILE_DEVICE_DISK): ...this.
1140
1141 2016-12-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
1142
1143         Rationalize <winuser.h> ANSI vs. UNICODE definition strategy.
1144
1145         * include/winuser.h [UNICODE, !UNICODE]: Replace individual pairs of
1146         alternative generic symbol mapping definitions, and typedefs, with...
1147         (__AW_SUFFIXED__): ...one such macro expansion per pair; collate with
1148         their respective ANSI and UNICODE specific references.
1149
1150 2016-11-26  Keith Marshall  <keithmarshall@users.sourceforge.net>
1151
1152         Deprecate obsolete <winable.h> and <pbt.h> headers.
1153
1154         * Makefile.in (%.h.in): Generalize vpath definition.
1155         (obsolete_headers, obsolete_header_script, w32api_dist_headers)
1156         (w32api_generated_headers, replace_headers, macro_name): New macros.
1157         (install-w32api-headers): Add dependency on w32api_dist_headers.
1158         (%.h): New static pattern rule; it generates generic dependants of...
1159         * include/obsolete.h.in: ...this new template for obsolete headers.
1160
1161         * include/winable.h include/pbt.h: Delete them; they are obsolete;
1162         replace them by install-time generated generic stubs.
1163
1164 2016-11-25  Keith Marshall  <keithmarshall@users.sourceforge.net>
1165
1166         Update <winuser.h> and <dbt.h>; fix issue [#2317].
1167
1168         * include/winuser.h: Tidy layout; add copyright notice.
1169         [WINVER, _WIN32_WINDOWS, _WIN32_WINNT]: Compare them symbolically.
1170         (__WINUSER_H_SOURCED__): New internal macro; define it, to facilitate
1171         selective inclusion of content from other headers; delete when done.
1172         (BSM_ALLCOMPONENTS, BSF_ALLOWSFW, BSM_APPLICATIONS, BSM_ALLDESKTOPS)
1173         (BSM_INSTALLABLEDRIVERS, BSM_NETDRIVER, BSM_VXDS, BSF_FLUSHDISK)
1174         (BSF_FORCEIFHUNG, BSF_IGNORECURRENTTASK, BSF_LUID, BSF_NOHANG)
1175         (BSF_NOTIMEOUTIFNOTHUNG, BSF_POSTMESSAGE, BSF_QUERY, BSF_RETURNHDESK)
1176         (BSF_SENDNOTIFYMESSAGE): Delete; do not define them locally; retrieve
1177         them selectively from <dbt.h>, where they are properly defined.
1178         [WINVER >= WIN2K/WIN98] (BlockInput): Add missing declaration.
1179         (KillTimer, TIMERPROC): Declare timer event parameters as UINT_PTR;
1180         formerly UINT, which doesn't match 64-bit size required for Win64.
1181         (SetTimer): Likewise; also declare similar return type.
1182         (WINEVENTPROC): Add missing CALLBACK attribute.
1183         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1184
1185         * include/w32api.h (__AW_ALIAS__): New macro; define it.
1186         * include/sdkddkver.h (_WIN32_WINNT_NT4SP3): New macro; define it.
1187
1188         * include/dbt.h: Tidy layout; add copyright notice.
1189         (_BEGIN_C_DECLS, _END_C_DECLS): Also prefer them here.
1190         [__WINUSER_H_SOURCED__] (_DBT_H): Do not define; expose only...
1191         (BSM_ALLCOMPONENTS, BSF_ALLOWSFW, BSM_APPLICATIONS, BSM_ALLDESKTOPS)
1192         (BSM_INSTALLABLEDRIVERS, BSM_NETDRIVER, BSM_VXDS, BSF_FLUSHDISK)
1193         (BSF_FORCEIFHUNG, BSF_IGNORECURRENTTASK, BSF_LUID, BSF_NOHANG)
1194         (BSF_NOTIMEOUTIFNOTHUNG, BSF_POSTMESSAGE, BSF_QUERY, BSF_RETURNHDESK)
1195         (BSF_SENDNOTIFYMESSAGE): ...these, to be duplicated in <winuser.h>
1196         (__AW_ALIAS__): Use it to define ANSI/UNICODE specific aliases for...
1197         (DEV_BROADCAST_PORT, DEV_BROADCAST_DEVICEINTERFACE): ...these generic
1198         structure typedef names, and their respectively corresponding...
1199         (PDEV_BROADCAST_PORT, PDEV_BROADCAST_DEVICEINTERFACE): ...pointer
1200         type names.
1201
1202 2016-09-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
1203
1204         Fix a minor ISO-C++11 conformity issue.
1205
1206         * include/winnt.h (GetCurrentFiber): Insert spaces, as required
1207         by ISO-C++11, between concatenated string literal elements.
1208         (GetFiberData, NtCurrentTeb): Likewise.
1209
1210 2016-08-01  Keith Marshall  <keithmarshall@users.sourceforge.net>
1211
1212         Merge w32api-3.18.1 legacy updates to 5.0-active branch.
1213
1214         * include/ddk/winddk.h: Update per issue [#2307] resolution.
1215         * include/ddk/ntdddisk.h include/ddk/ntddstor.h: Likewise.
1216
1217 2016-07-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
1218
1219         Prepare and tag all files for release of w32api-3.18.1
1220
1221         * configure.ac (AC_INIT): Increment patch level to 3.18.1
1222
1223 2016-07-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
1224
1225         Resolve improper macro expansion issue [#2307].
1226
1227         * include/ddk/winddk.h (__FILE_AM_BUFFERED, __FILE_RD_BUFFERED)
1228         (__FILE_RW_BUFFERED): Redefine, encapsulating the expansion of each
1229         dependent macro WITHIN the expansion of each of these; hence...
1230
1231         * include/ddk/ntdddisk.h (IOCTL_DISK_GET_DRIVE_GEOMETRY)
1232         (IOCTL_DISK_FORMAT_TRACKS_EX, IOCTL_DISK_REASSIGN_BLOCKS)
1233         (IOCTL_DISK_GET_MEDIA_TYPES, IOCTL_DISK_CONTROLLER_NUMBER)
1234         (IOCTL_DISK_GET_DRIVE_LAYOUT, IOCTL_DISK_SET_DRIVE_LAYOUT)
1235         (IOCTL_DISK_GET_PARTITION_INFO, IOCTL_DISK_SET_PARTITION_INFO)
1236         (IOCTL_DISK_GET_DRIVE_GEOMETRY_EX, IOCTL_DISK_UPDATE_DRIVE_SIZE)
1237         (IOCTL_DISK_VERIFY, IOCTL_DISK_FORMAT_TRACKS, IOCTL_DISK_PERFORMANCE)
1238         (IOCTL_DISK_CREATE_DISK, IOCTL_DISK_RESERVE, IOCTL_DISK_IS_WRITABLE)
1239         (IOCTL_DISK_GET_PARTITION_INFO_EX, IOCTL_DISK_SET_PARTITION_INFO_EX)
1240         (IOCTL_DISK_GET_CACHE_INFORMATION, IOCTL_DISK_SET_CACHE_INFORMATION)
1241         (IOCTL_DISK_INTERNAL_SET_VERIFY, IOCTL_DISK_INTERNAL_CLEAR_VERIFY)
1242         (IOCTL_DISK_GET_DRIVE_LAYOUT_EX, IOCTL_DISK_SET_DRIVE_LAYOUT_EX)
1243         (IOCTL_DISK_GROW_PARTITION, IOCTL_DISK_DELETE_DRIVE_LAYOUT)
1244         (IOCTL_DISK_GET_LENGTH_INFO, IOCTL_DISK_PERFORMANCE_OFF)
1245         (IOCTL_DISK_CHECK_VERIFY, IOCTL_DISK_FIND_NEW_DEVICES)
1246         (SMART_GET_VERSION, SMART_RCV_DRIVE_DATA, SMART_SEND_DRIVE_COMMAND):
1247         ...adjust these dependent macro definitions accordingly.
1248
1249         * include/ddk/ntddstor.h (IOCTL_STORAGE_CHECK_VERIFY)
1250         (IOCTL_STORAGE_CHECK_VERIFY2, IOCTL_STORAGE_MEDIA_REMOVAL)
1251         (IOCTL_STORAGE_EJECTION_CONTROL, IOCTL_STORAGE_MCN_CONTROL)
1252         (IOCTL_STORAGE_GET_DEVICE_NUMBER, IOCTL_STORAGE_PREDICT_FAILURE)
1253         (IOCTL_STORAGE_GET_MEDIA_TYPES, IOCTL_STORAGE_GET_MEDIA_TYPES_EX)
1254         (IOCTL_STORAGE_GET_MEDIA_SERIAL_NUMBER, IOCTL_STORAGE_QUERY_PROPERTY)
1255         (IOCTL_STORAGE_RELEASE, IOCTL_STORAGE_FIND_NEW_DEVICES)
1256         (IOCTL_STORAGE_RESET_BUS, IOCTL_STORAGE_RESET_DEVICE)
1257         (IOCTL_STORAGE_EJECT_MEDIA, IOCTL_STORAGE_LOAD_MEDIA)
1258         (IOCTL_STORAGE_LOAD_MEDIA2, IOCTL_STORAGE_RESERVE): Likewise.
1259
1260 2016-07-19  Keith Marshall  <keithmarshall@users.sourceforge.net>
1261
1262         Update install-sh to match mingw.org/build-aux package.
1263
1264         * install-sh: Delete it; use version in parent directory instead,
1265         recreating local copy, (as symlink, if supported), on demand.
1266
1267 2016-07-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
1268
1269         Eliminate redundant configuration files.
1270
1271         * aclocal.m4 VERSION.m4: Delete them; restore them on demand, via...
1272         * Makefile.in ($top_srcdir/../%): ...this symlink dependency rule.
1273
1274         * configure.ac (AC_PROG_LN_S): Add configuration check.
1275
1276 2016-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1277
1278         Discard redundant config.guess and config.sub files.
1279
1280         * config.guess config.sub: Delete them; they are no longer required.
1281         * Makefile.in (SRCDIST_ADD): Remove related references.
1282
1283 2016-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1284
1285         Merge recent legacy branch updates to 5.0-active branch.
1286
1287         * Makefile.in include/ddk/ntifs.h include/ddk/winddk.h
1288         * include/sdkddkver.h include/setupapi.h include/windows.h
1289         * include/winnt.h include/winuser.h include/winver.h
1290         * include/wtsapi32.h lib/wtsapi32.def: Updated.
1291
1292 2016-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1293
1294         Prepare and tag all files for release of w32api-3.18.
1295
1296 2016-07-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
1297
1298         Do not pass MAKEFLAGS explicitly, when invoking recursive make.
1299
1300         * Makefile.in (install-strip, uninstall): Delete explicit $(MAKEFLAGS)
1301         references from $(MAKE) command lines; make passes them implicitly.
1302
1303 2016-06-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
1304
1305         Backport MemoryBarrier() implementation from 4.0-dev branch.
1306
1307         * include/winnt.h (MemoryBarrier): Implement it; this is a rework of
1308         Earnie's original inline implementation, but declared 'static' to fix
1309         issue [#1661]; it is further modified, to avoid the broken pre-Vista
1310         fallback identified by issue [#2131], and to remove references to...
1311         (__faststorefence, __mf): ...these MSVC intrinsics, replaced by...
1312         [defined __ATOMIC_SEQ_CST] (__atomic_thread_fence): ...this, or...
1313         [GCC >= 4.4] (__sync_synchronize): ...this, as appropriate, falling
1314         back to inline assembly code when necessary.
1315
1316         * include/ddk/winddk.h (KeMemoryBarrier): Delegate it to...
1317         (MemoryBarrier): ...this, so avoiding the potential to emit invalid
1318         code, for hosts which do not support the SSE2 'mfence' instruction.
1319
1320 2016-06-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
1321
1322         Merge further W32API updates from Cygwin CVS.
1323         Incorporated selected changes from 2012-08-01 to 2012-08-04.
1324
1325         * include/setupapi.h include/winuser.h include/winver.h
1326         * include/wtsapi32.h lib/wtsapi32.def: Merged and updated.
1327
1328 2016-06-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
1329
1330         Update mapping of GCC to MSVC host identification macros.
1331
1332         * include/windows.h: Assert copyright; tidy layout.
1333         (_M_IX86, _ALPHA_, _PPC_, _MIPS_, _68K_): Delete duplicate defines.
1334         [!_WINUSER_H, !_WINNLS_H, !_WINVER_H, !_WINNETWK_H, !_WINREG_H]
1335         [!_WINSVC_H]: Do not explicitly test these here; they are properly
1336         managed implicitly, by GCC, when including the associated headers.
1337
1338         * include/winnt.h: Assert copyright; tidy layout.
1339         (_BEGIN_C_DECLS, _END_C_DECLS): Use these, as appropriate.
1340         (__aligned__, __always_inline__, __selectany__): Prefer these...
1341         (aligned, always_inline, selectany): ...to these attribute forms.
1342         (CONTEXT) [_ALPHA_, _PPC_, MIPS, ARM]: Change selector macros to...
1343         [_M_ALPHA, _M_PPC, _M_MRX000, _M_ARM]: ...these, respectively.
1344         (GetCurrentFiber, GetFiberData, NtCurrentTeb): Redefine in terms of...
1345         (__tib_fiber_data__, __tib_self_refptr__): ...these adaptive macros...
1346         [!_WIN64]: ...to accommodate 32-bit, or otherwise 64-bit Windows.
1347         (_ALPHA_, _PPC_, _MIPS_, _68K_): Delete these redundant macros...
1348         (_M_IX86): ...also removing this, but relocate it to...
1349         * include/sdkddkver.h (_M_IX86): ...here; augment it with...
1350         (_M_IX86_FP, _M_X64, _M_AMD64, _M_IA64): ...these; define them as
1351         appropriate.
1352
1353         * include/ddk/ntifs.h [!_ALPHA_]: Augment test; rather consider...
1354         [!_ALPHA_ && !_M_ALPHA]: ...this, for structure alignment control.
1355
1356 2016-05-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
1357
1358         Merge W32API updates, from Cygwin CVS, into legacy branch.
1359         Incorporate changes since release of w32api-3.17, until 2012-07-06.
1360
1361         * include/shobjidl.h lib/shobjidl-uuid.c: New files, added per LRN's
1362         2012-04-28 commit to Cygwin CVS.
1363
1364         * include/gdiplus/gdiplustypes.h include/imagehlp.h
1365         * include/routprot.h include/shlwapi.h include/userenv.h
1366         * include/winbase.h include/wincon.h include/windef.h
1367         * include/winerror.h include/wingdi.h include/winnt.h
1368         * include/winsock.h include/winsock2.h include/winuser.h: Updated to
1369         match Cygwin CVS state, as of 2012-07-06.
1370
1371         * include/wincrypt.h: Updated to remove duplicate manifest constant
1372         definitions, as identified per Chris Sutcliffe's 2012-01-03 commit to
1373         Cygwin CVS; merge with my 2015-09-29 commit; additionally, remove...
1374         (szOID_RSA_emailAddr, szOID_RSA_unstructAddr, szOID_RSA_unstructName)
1375         (CRYPT_ARCHIVABLE, CRYPT_NOHASHOID, CRYPT_VERIFYCONTEXT): ...extra
1376         copies of these further duplicated definitions, identified during
1377         the merging operation.
1378
1379 2016-05-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
1380
1381         Synchronize package version management with MinGW Runtime.
1382
1383         * VERSION.m4: New file; link it to keep in sync with identically named
1384         file in top level composite package source directory; it defines...
1385         (__VERSION__): ...this new composite package version macro.
1386
1387         * aclocal.m4: Link it, to keep in sync with identically named files in
1388         top level composite source and sibling mingwrt sub-package directories.
1389         (__VERSION__): New macro; include VERSION.m4 to define it.
1390         (__BUG_REPORT_URL__): New macro; define it.
1391
1392         * configure.ac (AC_INIT): Assign package version and bug report URL...
1393         (__VERSION__, __BUG_REPORT_URL__): ...from these, as defined through
1394         automatic inclusion of aclocal.m4
1395
1396         * Makefile.in (configure): Add dependency on VERSION.m4
1397
1398 2016-05-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
1399
1400         Eliminate redundant <parts/winioctl.h> header.
1401
1402         * include/parts/winioctl.h: Delete it; distribute its content...
1403         * include/ddk/winddk.h include/ddk/ntddstor.h include/ddk/ntdddisk.h:
1404         ...among these, separating it into discrete sections based on...
1405         [__need_ddk_winddk_includes, __need_ddk_ntddstor_includes]
1406         [__need_ddk_ntdddisk_includes]: ...these selectors, respectively.
1407         [__WINIOCTL_H_SOURCED__]: Expose only those sections; do not define...
1408         (_DDK_WINDDK_H, _DDK_NTDDSTOR_H, _DDK_NTDDDISK_H): ...these.
1409
1410         * include/winioctl.h (__WINIOCTL_H_SOURCED__): Define it; include each
1411         of <ddk/winddk.h>, <ddk/ntddstor.h>, and <ddk/ntdddisk.h>
1412
1413 2016-05-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
1414
1415         Enforce consistent specification of package version.
1416
1417         * include/w32api.h: Rename as...
1418         * include/w32api.h.in: ...this build-time template file.
1419         (__W32API_VERSION): Redefine it, in terms of...
1420         (%PACKAGE_VERSION_LONG%): ...this substitution template.
1421         (__W32API_MAJOR_VERSION, __W32API_MINOR_VERSION)
1422         (__W32API_PATCHLEVEL): Likewise, redefine them in terms of...
1423         (%PACKAGE_VERSION_MAJOR%, %PACKAGE_VERSION_MINOR%)
1424         (%PACKAGE_VERSION_PATCH%): ...these.
1425
1426         * configure.ac (AC_CONFIG_SRCDIR): Adjust for renamed file.
1427         (MINGW_AC_CONFIG_EXTRA_SRCDIR): Likewise, for similarly renamed
1428         mingwrt/include/_mingw.h.in file.
1429
1430         * Makefile.in (all-w32api-libs): Add dependency on...
1431         (w32api.h, _mingw.h): ...these; add rule to generate them, using...
1432         (PACKAGE_VERSION_SCRIPT, PACKAGE_VERSION_FORMAT): ...these new macros;
1433         they apply appropriate substitutions to the renamed template files.
1434         (install-w32api-headers): Explicitly add w32api.h
1435
1436 2015-11-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1437
1438         Refactor for Windows DDK synchronization; fix MinGW-Bug [#1954].
1439
1440         * include/parts/winioctl.h: New file; it provides infrastructure for
1441         sharing of common code between DDK headers and primary <winioctl.h>
1442         (__IOCTL_STORAGE_, __IOCTL_DISK_, __FILE_RW_ACCESS, __FILE_AM_BUFFERED)
1443         (__FILE_RD_BUFFERED, __FILE_RW_BUFFERED): New internal convenience
1444         macros; they facilitate more consise expression of factored out IOCTL
1445         and FSCTL macros; define them.
1446
1447         * include/ddk/ntddk.h: Assert copyright; tidy layout.
1448         (__NTDDK_H): Multiple inclusion guard macro, renamed to...
1449         (_DDK_NTDDK_H): ...this; it provides better indication of location.
1450         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1451
1452         * include/ddk/winddk.h: Assert copyright; tidy layout.
1453         (__WINDDK_H): Multiple inclusion guard macro, renamed to...
1454         (_DDK_WINDDK_H): ...this; it provides better indication of location.
1455         [!defined _DDK_NTDDK_H]: Forbid direct inclusion; emit diagnostic.
1456         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1457         (METHOD_BUFFERED, METHOD_IN_DIRECT, METHOD_OUT_DIRECT)
1458         (METHOD_NEITHER): Redefine as enumeration; factor it out.
1459         (FILE_ANY_ACCESS, FILE_SPECIAL_ACCESS, FILE_READ_ACCESS)
1460         (FILE_WRITE_ACCESS): Likewise.
1461         (CTL_CODE, DEVICE_TYPE_FROM_CTL_CODE): Factor out.
1462         [defined _DRIVE_LAYOUT_INFORMATION_MBR_DEFINED]: Delete guard.
1463         (struct _DRIVE_LAYOUT_INFORMATION_MBR, DRIVE_LAYOUT_INFORMATION_MBR)
1464         (PDRIVE_LAYOUT_INFORMATION_MBR): Factor out, without guard.
1465         (struct _DRIVE_LAYOUT_INFORMATION_GPT, DRIVE_LAYOUT_INFORMATION_GPT)
1466         (PDRIVE_LAYOUT_INFORMATION_GPT): Factor out.
1467         (struct _PARTITION_INFORMATION_MBR, PARTITION_INFORMATION_MBR)
1468         (PPARTITION_INFORMATION_MBR): Likewise.
1469         (FILE_DEVICE_BEEP, FILE_DEVICE_CD_ROM, FILE_DEVICE_CD_ROM_FILE_SYSTEM)
1470         (FILE_DEVICE_CONTROLLER, FILE_DEVICE_DATALINK, FILE_DEVICE_DFS)
1471         (FILE_DEVICE_DISK, FILE_DEVICE_DISK_FILE_SYSTEM)
1472         (FILE_DEVICE_FILE_SYSTEM, FILE_DEVICE_INPORT_PORT)
1473         (FILE_DEVICE_KEYBOARD, FILE_DEVICE_MAILSLOT, FILE_DEVICE_MIDI_IN)
1474         (FILE_DEVICE_MIDI_OUT, FILE_DEVICE_MOUSE)
1475         (FILE_DEVICE_MULTI_UNC_PROVIDER, FILE_DEVICE_NAMED_PIPE)
1476         (FILE_DEVICE_NETWORK, FILE_DEVICE_NETWORK_BROWSER)
1477         (FILE_DEVICE_NETWORK_FILE_SYSTEM, FILE_DEVICE_NULL)
1478         (FILE_DEVICE_PARALLEL_PORT, FILE_DEVICE_PHYSICAL_NETCARD)
1479         (FILE_DEVICE_PRINTER, FILE_DEVICE_SCANNER)
1480         (FILE_DEVICE_SERIAL_MOUSE_PORT, FILE_DEVICE_SERIAL_PORT)
1481         (FILE_DEVICE_SCREEN, FILE_DEVICE_SOUND, FILE_DEVICE_STREAMS)
1482         (FILE_DEVICE_TAPE, FILE_DEVICE_TAPE_FILE_SYSTEM, FILE_DEVICE_TRANSPORT)
1483         (FILE_DEVICE_UNKNOWN, FILE_DEVICE_VIDEO, FILE_DEVICE_VIRTUAL_DISK)
1484         (FILE_DEVICE_WAVE_IN, FILE_DEVICE_WAVE_OUT, FILE_DEVICE_8042_PORT)
1485         (FILE_DEVICE_NETWORK_REDIRECTOR, FILE_DEVICE_BATTERY)
1486         (FILE_DEVICE_BUS_EXTENDER, FILE_DEVICE_MODEM, FILE_DEVICE_VDM)
1487         (FILE_DEVICE_MASS_STORAGE, FILE_DEVICE_SMB, FILE_DEVICE_KS)
1488         (FILE_DEVICE_CHANGER, FILE_DEVICE_SMARTCARD, FILE_DEVICE_ACPI)
1489         (FILE_DEVICE_DVD, FILE_DEVICE_FULLSCREEN_VIDEO)
1490         (FILE_DEVICE_DFS_FILE_SYSTEM, FILE_DEVICE_DFS_VOLUME)
1491         (FILE_DEVICE_SERENUM, FILE_DEVICE_TERMSRV, FILE_DEVICE_KSEC)
1492         (FILE_DEVICE_FIPS): Redefine as enumeration; factor it out.
1493         (enum _PARTITION_STYLE, PARTITION_STYLE): Factor out; add...
1494         (PARTITION_STYLE_RAW): ...this new enumeration state; previously, it
1495         was defined only when including this enumeration from winioctl.h
1496         (struct _CREATE_DISK_MBR, CREATE_DISK_MBR, PCREATE_DISK_MBR)
1497         (struct _CREATE_DISK_GPT, CREATE_DISK_GPT, PCREATE_DISK_GPT)
1498         (struct _CREATE_DISK, CREATE_DISK, PCREATE_DISK): Factor out;
1499         include parts/winioctl.h
1500
1501         * include/ddk/ntddstor.h: Assert copyright; tidy layout.
1502         (__NTDDSTOR_H): Multiple inclusion guard macro, renamed to...
1503         (_DDK_NTDDSTOR_H): ...this; to provide better indication of location.
1504         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1505         (struct _STORAGE_BUS_TYPE, STORAGE_BUS_TYPE, PSTORAGE_BUS_TYPE)
1506         (IOCTL_STORAGE_BASE, IOCTL_STORAGE_RESERVE, IOCTL_STORAGE_RELEASE)
1507         (IOCTL_STORAGE_CHECK_VERIFY, IOCTL_STORAGE_CHECK_VERIFY2)
1508         (IOCTL_STORAGE_MEDIA_REMOVAL, IOCTL_STORAGE_EJECT_MEDIA)
1509         (IOCTL_STORAGE_LOAD_MEDIA, IOCTL_STORAGE_LOAD_MEDIA2)
1510         (IOCTL_STORAGE_EJECTION_CONTROL, IOCTL_STORAGE_FIND_NEW_DEVICES)
1511         (IOCTL_STORAGE_GET_MEDIA_TYPES, IOCTL_STORAGE_GET_MEDIA_TYPES_EX)
1512         (IOCTL_STORAGE_GET_MEDIA_SERIAL_NUMBER, IOCTL_STORAGE_PREDICT_FAILURE)
1513         (IOCTL_STORAGE_QUERY_PROPERTY, IOCTL_STORAGE_GET_DEVICE_NUMBER)
1514         (IOCTL_STORAGE_RESET_BUS, IOCTL_STORAGE_RESET_DEVICE)
1515         (IOCTL_STORAGE_MCN_CONTROL): Factor out; include parts/winioctl.h
1516
1517         * include/ddk/ntdddisk.h: Assert copyright; tidy layout.
1518         (__NTDDDISK_H): Multiple inclusion guard macro, renamed to...
1519         (_DDK_NTDDDISK_H): ...this; to provide better indication of location.
1520         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1521         (IOCTL_DISK_BASE, IOCTL_DISK_GET_LENGTH_INFO)
1522         (IOCTL_DISK_IS_WRITABLE, IOCTL_DISK_REASSIGN_BLOCKS)
1523         (IOCTL_DISK_FIND_NEW_DEVICES, IOCTL_DISK_GET_MEDIA_TYPES)
1524         (IOCTL_DISK_GET_DRIVE_LAYOUT, IOCTL_DISK_SET_DRIVE_LAYOUT)
1525         (IOCTL_DISK_GET_PARTITION_INFO, IOCTL_DISK_SET_PARTITION_INFO)
1526         (IOCTL_DISK_GET_DRIVE_LAYOUT_EX, IOCTL_DISK_SET_DRIVE_LAYOUT_EX)
1527         (IOCTL_DISK_GET_DRIVE_GEOMETRY, IOCTL_DISK_GET_DRIVE_GEOMETRY_EX)
1528         (IOCTL_DISK_CREATE_DISK, IOCTL_DISK_VERIFY, IOCTL_DISK_CHECK_VERIFY)
1529         (IOCTL_DISK_GET_PARTITION_INFO_EX, IOCTL_DISK_SET_PARTITION_INFO_EX)
1530         (IOCTL_DISK_GET_CACHE_INFORMATION, IOCTL_DISK_SET_CACHE_INFORMATION)
1531         (IOCTL_DISK_DELETE_DRIVE_LAYOUT, IOCTL_DISK_GROW_PARTITION)
1532         (IOCTL_DISK_FORMAT_TRACKS, IOCTL_DISK_FORMAT_TRACKS_EX)
1533         (IOCTL_DISK_PERFORMANCE, IOCTL_DISK_PERFORMANCE_OFF)
1534         (IOCTL_DISK_UPDATE_DRIVE_SIZE, IOCTL_DISK_RESERVE): Factor out; all of
1535         these macros are now defined in parts/winioctl.h; include it.
1536         (PARTITION_ENTRY_UNUSED, PARTITION_FAT_12, PARTITION_XENIX_1)
1537         (PARTITION_XENIX_2, PARTITION_FAT_16, PARTITION_EXTENDED)
1538         (PARTITION_HUGE, PARTITION_IFS, PARTITION_OS2BOOTMGR, PARTITION_FAT32)
1539         (PARTITION_FAT32_XINT13, PARTITION_XINT13, PARTITION_XINT13_EXTENDED)
1540         (PARTITION_PREP, PARTITION_LDM, PARTITION_UNIX, PARTITION_NTFT)
1541         (VALID_NTFT): Redefine as enumeration; factor it out.
1542         (IsRecognizedPartition, IsContainerPartition): Factor out.
1543         (enum _MEDIA_TYPE, MEDIA_TYPE, PMEDIA_TYPE): Factor out, adding...
1544         (F3_200Mb_512, F3_240M_512, F3_32M_512): ...these new state values.
1545         (enum _DETECTION_TYPE, DETECTION_TYPE): Factor out.
1546         (struct _DISK_INT13_INFO, DISK_INT13_INFO, PDISK_INT13_INFO)
1547         (struct _DISK_EX_INT13_INFO, DISK_EX_INT13_INFO, PDISK_EX_INT13_INFO)
1548         (struct _DISK_DETECTION_INFO, DISK_DETECTION_INFO, PDISK_DETECTION_INFO)
1549         (struct _DISK_GEOMETRY_EX, DISK_GEOMETRY_EX, PDISK_GEOMETRY_EX)
1550         (struct _DISK_GEOMETRY, DISK_GEOMETRY, PDISK_GEOMETRY)
1551         (DiskGeometryGetPartition, DiskGeometryGetDetect): Factor out.
1552         (struct _PARTITION_INFORMATION): Change field data types for...
1553         (HiddenSectors, PartitionNumber): ...these, from DWORD to ULONG...
1554         (PartitionType): ...and this from BYTE to UCHAR, to keep consistent
1555         with Windows DDK convention, then factor out struct, together with...
1556         (PARTITION_INFORMATION, PPARTITION_INFORMATION): ...these.
1557         (struct _PARTITION_INFORMATION_GPT, struct _DISK_PARTITION_INFO)
1558         (PARTITION_INFORMATION_GPT, *PPARTITION_INFORMATION_GPT)
1559         (DISK_PARTITION_INFO, *PDISK_PARTITION_INFO): Factor out.
1560         (struct _GET_LENGTH_INFORMATION)
1561         (GET_LENGTH_INFORMATION, PGET_LENGTH_INFORMATION)
1562         (struct _DISK_PERFORMANCE, DISK_PERFORMANCE, PDISK_PERFORMANCE)
1563         (struct _DISK_PERFORMANCE_EX, DISK_PERFORMANCE_EX, PDISK_PERFORMANCE_EX)
1564         (struct _FORMAT_PARAMETERS, struct _FORMAT_EX_PARAMETERS)
1565         (FORMAT_PARAMETERS, PFORMAT_PARAMETERS, FORMAT_EX_PARAMETERS)
1566         (PFORMAT_EX_PARAMETERS): Factor out.
1567         (struct _REASSIGN_BLOCKS): Change field data types for...
1568         (Reserved, Count): ...these fields, from WORD to USHORT, and...
1569         (BlockNumber): ...this from DWORD to ULONG, per Windows DDK
1570         convention, then factor out the struct definition, together with...
1571         (REASSIGN_BLOCKS, PREASSIGN_BLOCKS): ...these associated typedefs.
1572         (struct _SET_PARTITION_INFORMATION, SET_PARTITION_INFORMATION)
1573         (PSET_PARTITION_INFORMATION): Factor out.
1574         (struct _VERIFY_INFORMATION): Change field data type for...
1575         (Length): ...this field, from DWORD to ULONG, per DDK convention, then
1576         factor out the entire struct definition, together with...
1577         (VERIFY_INFORMATION, PVERIFY_INFORMATION): ...these associated typedefs.
1578         (DISK_CACHE_RETENTION_PRIORITY): Factor out enumerated typedef.
1579         (struct _DISK_CACHE_INFORMATION, struct _DISK_GROW_PARTITION)
1580         (DISK_CACHE_INFORMATION, PDISK_CACHE_INFORMATION, DISK_GROW_PARTITION)
1581         (PDISK_GROW_PARTITION): Factor out.
1582
1583         * include/winioctl.h: Assert copyright; tidy layout; incorporate
1584         definitions from Windows DDK headers, by including parts/winioctl.h;
1585         delete duplicate definitions already identified as having been factored
1586         out from ddk/winddk.h, ddk/ntddstor.h, and ddk/ntdddisk.h; accept type
1587         compatible changes from DWORD to ULONG, WORD to USHORT, and BYTE to
1588         UCHAR, resulting in no significant changes, except that...
1589         (struct _DISK_PERFORMANCE): ...this is extended, by addition of...
1590         (IdleTime, SplitCount, QueryTime, StorageDeviceNumber)
1591         (StorageManagerName): ...these previously missing fields, originally
1592         appropriately defined in ddk/ntdddisk.h, thus fixing bug [#1954].
1593         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1594
1595 2015-10-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1596
1597         Windows application module version information API updates.
1598
1599         * include/winver.h: Assert copyright; tidy layout.
1600         (_BEGIN_C_DECLS, _END_C_DECLS): Use these, as appropriate.
1601         (__AW_SUFFIXED__): Use throughout, to identify generic functions
1602         having both ANSI and UTF-16LE specific alternative implementations.
1603         [NTDDI_VERSION >= NTDDI_VISTA] (GetFileVersionInfoEx): New function.
1604         [NTDDI_VERSION >= NTDDI_VISTA] (GetFileVersionInfoSizeEx): Likewise;
1605         note that both are generic, with ANSI and UTF-16LE implementations,
1606         but the ANSI implementations are missing from MSVCRT.DLL when...
1607         [NTDDI_VERSION < NTDDI_WIN8]: ...this.
1608
1609         * lib/version.def (GetFileVersionInfoExA, GetFileVersionInfoExW)
1610         (GetFileVersionInfoSizeExA, GetFileVersionInfoSizeExW): Add symbols.
1611
1612 2015-10-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1613
1614         Revert a failed experimental macro construct.
1615
1616         * include/w32api.h (__W32API_DEPRECATED_ALIAS): Delete this; it bloats
1617         code, and doesn't work in the C preprocessor conditional context where
1618         its associated constant definitions are most likely to be required.
1619         (Windows95, Windows98, WindowsME, WindowsNT4, Windows2000, WindowsXP)
1620         (Windows2003, WindowsVista, IE3, IE301, IE302, IE4, IE401, IE5, IE5a)
1621         (IE5b, IE501, IE55, IE56, IE6, IE601, IE602, IE7): Redefine as macros,
1622         now in terms of their preferred equivalents from <sdkddkver.h>
1623
1624 2015-09-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
1625
1626         Code clean-up; fix MinGW-Bug [#2263].
1627
1628         * include/w32api.h (__AW_SUFFIXED__): New macro; define it.
1629         (__AW_EXTENDED__, __AW_STRING_A__, __AW_STRING_W__): Likewise.
1630         (__AW__WCHAR_T__): Likewise; this is a helper for __AW_STRING_W__.
1631
1632         * include/wincrypt.h: Assert copyright; tidy layout; replace all C++
1633         style comments, using ISO-C conforming style; remove all redundant
1634         parameter names from function prototype declarations, throughout.
1635         (pragma GCC system_header): Remove pointless conditional guard.
1636         (_BEGIN_C_DECLS, _END_C_DECLS): Use to wrap extern "C" declarations.
1637         [WINVER >= 0x500, WINVER >= 0x501]: Replace conditionals with...
1638         [WINVER >= _WIN32_WINNT_WIN2K, WINVER >= _WIN32_WINNT_WINXP]: ...these
1639         alternatives, respectively; they offer improved self-documentation.
1640         (MS_DEF_PROV, MS_ENHANCED_PROV, MS_STRONG_PROV, MS_SCARD_PROV)
1641         (MS_DEF_RSA_SIG_PROV, MS_DEF_RSA_SCHANNEL_PROV, MS_DEF_DSS_PROV)
1642         (MS_DEF_DSS_DH_PROV, MS_ENH_DSS_DH_PROV, MS_DEF_DH_SCHANNEL_PROV)
1643         (MS_ENH_RSA_AES_PROV): Redefine as __AW_EXTENDED__ derivatives.
1644         (MS_DEF_PROV_W, MS_ENHANCED_PROV_W, MS_STRONG_PROV_W, MS_SCARD_PROV_W)
1645         (MS_DEF_RSA_SIG_PROV_W, MS_DEF_RSA_SCHANNEL_PROV_W, MS_DEF_DSS_PROV_W)
1646         (MS_DEF_DSS_DH_PROV_W, MS_ENH_DSS_DH_PROV_W, MS_DEF_DH_SCHANNEL_PROV_W)
1647         (MS_ENH_RSA_AES_PROV_W): Redefine; use __AW_STRING_W__ to derive them
1648         from their __AW_STRING_A__ equivalent string constant definitions.
1649         (GET_ALG_CLASS): Redefine, expressing result in terms of...
1650         (ALG_CLASS_ALL): ...this manifest bit mask; also redefined, preferring
1651         a hexadecimal expression of the mask value over the former decimal.
1652         (GET_ALG_TYPE, GET_ALG_SID): Similarly, use hexadecimal mask values.
1653         (ALG_CLASS_SIGNATURE, ALG_CLASS_MSG_ENCRYPT, ALG_CLASS_DATA_ENCRYPT)
1654         (ALG_CLASS_HASH, ALG_CLASS_KEY_EXCHANGE, ALG_TYPE_DSS, ALG_TYPE_RSA)
1655         (ALG_TYPE_BLOCK, ALG_TYPE_STREAM, ALG_TYPE_DH, ALG_TYPE_SECURECHANNEL)
1656         (CRYPT_UPDATE_KEY, CRYPT_NEWKEYSET, CRYPT_DELETEKEYSET, CRYPT_SILENT)
1657         (CRYPT_MACHINE_KEYSET, CRYPT_USER_PROTECTED, CRYPT_CREATE_SALT)
1658         (CRYPT_EXPORTABLE, CRYPT_ENCRYPT, CRYPT_DECRYPT, CRYPT_EXPORT)
1659         (CRYPT_READ, CRYPT_WRITE, CRYPT_MAC, CERT_TRUST_IS_NOT_TIME_VALID)
1660         (CERT_TRUST_IS_NOT_TIME_NESTED, CERT_TRUST_IS_REVOKED)
1661         (CERT_TRUST_IS_NOT_SIGNATURE_VALID, CERT_TRUST_IS_NOT_VALID_FOR_USAGE)
1662         (CERT_TRUST_IS_UNTRUSTED_ROOT, CERT_TRUST_REVOCATION_STATUS_UNKNOWN)
1663         (CERT_TRUST_IS_CYCLIC, CERT_TRUST_CTL_IS_NOT_SIGNATURE_VALID)
1664         (CERT_TRUST_IS_PARTIAL_CHAIN, CERT_TRUST_CTL_IS_NOT_TIME_VALID)
1665         (CERT_TRUST_CTL_IS_NOT_VALID_FOR_USAGE, CERT_TRUST_IS_SELF_SIGNED)
1666         (CERT_TRUST_HAS_EXACT_MATCH_ISSUER, CERT_TRUST_HAS_KEY_MATCH_ISSUER)
1667         (CERT_TRUST_HAS_NAME_MATCH_ISSUER, CERT_TRUST_IS_COMPLEX_CHAIN)
1668         (CERT_CHAIN_POLICY_BASE, CERT_CHAIN_POLICY_AUTHENTICODE)
1669         (CERT_CHAIN_POLICY_AUTHENTICODE_TS, CERT_CHAIN_POLICY_SSL)
1670         (CERT_CHAIN_POLICY_BASIC_CONSTRAINTS, CERT_CHAIN_POLICY_NT_AUTH)
1671         (CERT_NAME_STR_REVERSE_FLAG, CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG)
1672         (CERT_NAME_STR_CRLF_FLAG, CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG)
1673         (CERT_NAME_STR_ENABLE_T61_UNICODE_FLAG, CERT_NAME_STR_NO_PLUS_FLAG)
1674         (CERT_NAME_STR_NO_QUOTING_FLAG, CERT_NAME_STR_SEMICOLON_FLAG)
1675         (CERT_FIND_CERT_ID, CERT_FIND_CTL_USAGE, CERT_FIND_ENHKEY_USAGE)
1676         (CERT_FIND_EXISTING, CERT_FIND_HASH, CERT_FIND_ISSUER_ATTR)
1677         (CERT_FIND_ISSUER_NAME, CERT_FIND_ISSUER_OF, CERT_FIND_KEY_IDENTIFIER)
1678         (CERT_FIND_KEY_SPEC, CERT_FIND_MD5_HASH, CERT_FIND_PROPERTY)
1679         (CERT_FIND_PUBLIC_KEY, CERT_FIND_SHA1_HASH, CERT_FIND_SIGNATURE_HASH)
1680         (CERT_FIND_SUBJECT_ATTR, CERT_FIND_SUBJECT_CERT, CERT_FIND_SUBJECT_NAME)
1681         (CERT_FIND_SUBJECT_STR_A, CERT_FIND_SUBJECT_STR_W)
1682         (CERT_FIND_ISSUER_STR_A, CERT_FIND_ISSUER_STR_W)
1683         (CERT_FIND_OR_ENHKEY_USAGE_FLAG, CERT_FIND_OPTIONAL_ENHKEY_USAGE_FLAG)
1684         (CERT_FIND_NO_ENHKEY_USAGE_FLAG, CERT_FIND_VALID_ENHKEY_USAGE_FLAG)
1685         (CERT_FIND_EXT_ONLY_ENHKEY_USAGE_FLAG, CERT_UNICODE_IS_RDN_ATTRS_FLAG)
1686         (CERT_CASE_INSENSITIVE_IS_RDN_ATTRS_FLAG, CERT_CHAIN_FIND_BY_ISSUER)
1687         (CERT_CHAIN_FIND_BY_ISSUER_COMPARE_KEY_FLAG)
1688         (CERT_CHAIN_FIND_BY_ISSUER_COMPLEX_CHAIN_FLAG)
1689         (CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_FLAG)
1690         (CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_URL_FLAG)
1691         (CERT_CHAIN_FIND_BY_ISSUER_LOCAL_MACHINE_FLAG)
1692         (CERT_CHAIN_FIND_BY_ISSUER_NO_KEY_FLAG)
1693         (CERT_SYSTEM_STORE_LOCAL_MACHINE): All represent bit-mapped values;
1694         express them in hexadecimal, in preference to original decimal form.
1695         (CERT_FIND_SUBJECT_STR, CERT_FIND_ISSUER_STR): Redefine them as
1696         __AW_EXTENDED__ macros, for UNICODE/non-UNICODE cases respectively.
1697         (szOID_CRL_DIST_POINTS): Correct defective definition; value should be
1698         a string literal, but was missing delimiting quotes; insert them.
1699         (CertNameToStr, CertOpenSystemStore, CertGetNameString, CryptSignHash)
1700         (CryptAcquireContext, CryptVerifySignature, CryptGetDefaultProvider)
1701         (CryptEnumProviders, CryptSetProvider): Define as __AW_SUFFIXED__
1702         aliases for each of the UNICODE/non-UNICODE cases respectively.
1703         (CryptEnumProvidersA): Correct prototype declaration; 5th parameter
1704         was declared as type LPTSTR, but should be type LPSTR.
1705         (CryptEnumProvidersW): Likewise; 5th parameter should be type LPWSTR.
1706         (CryptGetDefaultProviderW): Likewise; 4th parameter was declared as
1707         type LPSTR, but should be type LPWSTR.
1708         [defined MINGW_TENTATIVE_ASSUMPTIONS] (X509_ANY_STRING)
1709         (X509_CRL_REASON_CODE, X509_DSS_PUBLICKEY, X509_UNICODE_ANY_STRING)
1710         (struct _CERT_ALT_NAME_ENTRY): Add tentative definitions.
1711
1712 2015-09-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1713
1714         Correct defect in build system compilation rule.
1715
1716         * Makefile.in (scrnsavw.$OBJEXT): Do not use $^ to represent the
1717         source file; it expands to also include prerequisite header files,
1718         which should not appear on the compilation command line.  Rewrite
1719         rule in static pattern format, and use $< instead.
1720
1721 2015-08-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
1722
1723         Build system corrections for GCC build time support.
1724
1725         * configure.ac (AC_PROG_CC): Don't use this; we need...
1726         (MINGW_AC_PROG_CC_COMPILE_ONLY): ...this alternative, to support
1727         building with only a stage 1 partially built GCC installation.
1728
1729         * Makefile.in (install-headers): New make objective; map it to...
1730         (install-w32api-headers): ...this, for which it is a logical alias.
1731
1732 2015-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1733
1734         Overhaul and streamline build system configuration.
1735
1736         * configure.in: Delete obsolete file; replace with...
1737         * configure.ac: New file; rewritten per current autoconf conventions.
1738
1739         * Makefile.in: Rewritten; adapted from current mingwrt configuration,
1740         it now processes the entire build without using separate sub-makes.
1741
1742         * lib/Makefile.in: Sub-make configuration not required now; delete it.
1743         * lib/ddk/Makefile.in lib/directx/Makefile.in: Likewise; delete them.
1744
1745 2015-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1746
1747         Remove unused aclocal.m4 configuration file.
1748
1749         * aclocal.m4: Delete it; it provides no content used by this package.
1750
1751 2015-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1752
1753         Adapt platform feature checks to NTDDI_VERSION conventions.
1754
1755         * include/sdkddkver.h: New file; merge from 4.0-dev branch.
1756         (_WIN32_WINNT_WINBLUE): New manifest constant for Windows-8.1.
1757         (WINNTVER): Prefer bitwise shift to division; adjust accordingly.
1758         [_WIN32_WINNT != OSVER(NTDDI_VERSION)]: Bad comparison; correct to...
1759         [_WIN32_WINNT != WINNTVER(NTDDI_VERSION)]: ...this.
1760
1761         * include/w32api.h: Assert copyright; include sdkddkver.h.
1762         (__W32API_VERSION): Increment to 3.18; adopt new encoding format.
1763         (__W32API_MAJOR_VERSION, __W32API_MINOR_VERSION): Adjust consistently.
1764         (__W32API_PATCH_LEVEL): New macro; define with initial value of zero.
1765         (__W32API_DEPRECATED_ALIAS): New macro; define it; use to redefine...
1766         (Windows95, Windows98, WindowsME, WindowsNT4, Windows2000, WindowsXP)
1767         (Windows2003, WindowsVista, IE3, IE301, IE302, IE4, IE401, IE5, IE5a)
1768         (IE5b, IE501, IE55, IE56, IE6, IE601, IE602, IE7): ...these; replace
1769         macro definitions by long integer constants, and mark as deprecated.
1770         (UNICODE, _UNICODE): Keep these consistent; use logic factored out of
1771         mingwrt/include/_mingw.h, whence we similarly relocate...
1772         (_EXTERN_C, _BEGIN_C_DECLS, _END_C_DECLS): ...these.
1773
1774         * include/windef.h: Assert copyright; include w32api.h, whence we
1775         infer default assignments, per included sdkddkver.h, for each of...
1776         (WINVER, _WIN32_WINNT): ...these; delete local defines.
1777         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1778
1779 2015-06-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1780
1781         Remove generated configure script from revision control.
1782
1783         * configure: Delete from SCM; maintainer must regenerate it, when
1784         required, as SCM will now ignore it.
1785
1786 2012-08-04  Earnie Boyd  <earnie@users.sourceforge.net>
1787
1788         Cosmetic adjustment to match MSDN documentation.
1789
1790         * include/winver.h (VerQueryValueA, VerQueryValueW): Declare type
1791         of parameter #1 to be LPCVOID, in preference to formerly specified,
1792         and functionally equivalent, 'const LPVOID'.
1793
1794 2012-08-01  Stephan Jorek  <sjorek@users.sourceforge.net>
1795
1796         Correct typos, as identified by issue [#1534].
1797
1798         * include/setupapi.h (SetupCancelTemporary): Should be...
1799         (SetupCancelTemporarySourceList): ...this; complete truncated name.
1800         (SetupFreeA, SetupFreeW): Likewise, complete these respectively to...
1801         (SetupFreeSourceListA, SetupFreeSourceListW): ...these, and...
1802         (SetupQueryA, SetupQueryW): ...these respectively to...
1803         (SetupQuerySourceListA, SetupQuerySourceListW): ...these.
1804         (SetupDiGetWizardage): Misspelled; correct it to...
1805         (SetupDiGetWizardPage): ...this.
1806
1807 2012-08-01  Earnie Boyd  <earnie@users.sourceforge.net>
1808
1809         Declare WTSVirtualChannel API functions per issue [#1342].
1810
1811         * include/wtsapi32.h [_WIN32_WINNT >= 0x500]
1812         (WTSVirtualChannelOpen, WTSVirtualChannelQuery, WTSVirtualChannelRead)
1813         (WTSVirtualChannelPurgeInput, WTSVirtualChannelPurgeOutput)
1814         (WTSVirtualChannelWrite, WTSVirtualChannelClose): Declare them.
1815         [_WIN32_WINNT >= 0x600] (WTSVirtualchannelOpenEx): Likewise.
1816
1817         * lib/wtsapi32.def (WTSVirtualChannelOpenEx@12): Add reference.
1818
1819 2012-08-01  Earnie Boyd  <earnie@users.sourceforge.net>
1820
1821         Correct MENUITEMINFO structure definition per issue [#1659].
1822
1823         * include/winuser.h (tagMENUITEMINFOA, tagMENUITEMINFOW): dwItemData
1824         field was defined as type DWORD; correct it to type ULONG_PTR.
1825
1826 2012-07-06  Corinna Vinschen  <corinna@vinschen.de>
1827
1828         Extend visibility of winsock definitions when building Cygwin.
1829
1830         * include/winsock.h [__INSIDE_CYGWIN__]: Expose definitions of...
1831         (IP_OPTIONS, SO_DEBUG, SO_ACCEPTCONN, SO_REUSEADDR, SO_KEEPALIVE)
1832         (SO_DONTROUTE, SO_BROADCAST, SO_USELOOPBACK, SO_LINGER, SO_OOBINLINE)
1833         (SO_DONTLINGER, SO_SNDBUF, SO_RCVBUF, SO_SNDLOWAT, SO_RCVLOWAT)
1834         (SO_SNDTIMEO, SO_RCVTIMEO, SO_ERROR, SO_TYPE): ...these; however...
1835         [__INSIDE_MSYS__]: ...keep them hidden.
1836
1837         * include/winsock2.h [__INSIDE_CYGWIN__]: Likewise, expose...
1838         (AF_MAX, _SS_MAXSIZE, _SS_ALIGNSIZE, _SS_PAD1SIZE, _SS_PAD2SIZE)
1839         (struct sockaddr, struct sockaddr_storage): ...these, whereas...
1840         [__INSIDE_MSYS__]: ...also keep them hidden.
1841
1842 2012-04-29  Jan Ringos  <tringi@users.sf.net>
1843
1844         Correct version guard for WinXP minimum requirement.
1845
1846         * include/winbase.h (GetModuleHandleEx): Function unsupported for...
1847         [_WIN32_WINNT >= 0x500]: ...this; it isn't in Win2K, so should be...
1848         [_WIN32_WINNT >= 0x501]: ...this; correct it accordingly.
1849         (GetModuleHandleExA, GetModuleHandleExW): Likewise.
1850
1851 2012-04-28  LRN  <l_r_nightmare@users.sf.net>
1852
1853         Add missing <shobjidl.h> and associated UUID implementation.
1854
1855         * include/shobjidl.h lib/shobjidl-uuid.c: New files.
1856         * lib/Makefile.in (UUID_SOURCES, UUID_OBJS): Add references.
1857
1858 2012-03-19  Ben Greear  <greear@users.sf.net>
1859
1860         Adjust header file definition order, to fix issue [#1570].
1861
1862         * include/routprot.h (IP_LOCAL_BINDING): Must be defined before...
1863         (IP_ADAPTER_BINDING_INFO): ...this; adjust order of definition.
1864
1865 2012-01-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1866
1867         Add missing return value, flagged by 'make test'.
1868
1869         * include/gdiplus/gdiplustypes.h (Gdiplus::GdiplusAbort::Abort):
1870         Return NO_ERROR in virtual definition.
1871
1872 2012-01-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1873
1874         Remove duplicate definitions, identified by 'make test'.
1875
1876         * include/wincrypt.h (CRYPT_NEWKEYSET, CRYPT_DELETEKEYSET)
1877         (CRYPT_MACHINE_KEYSET, CRYPT_EXPORTABLE, CRYPT_USER_PROTECTED)
1878         (CRYPT_SILENT, CRYPT_CREATE_SALT, CRYPT_UPDATE_KEY, CRYPT_NO_SALT)
1879         (CRYPT_PREGEN, CRYPT_RECIPIENT, CRYPT_INITIATOR, CRYPT_ONLINE)
1880         (CRYPT_SF, CRYPT_CREATE_IV, CRYPT_KEK, CRYPT_DATA_KEY)
1881         (CRYPT_VOLATILE, CRYPT_SGCKEY): Delete second instance of each.
1882
1883         * include/winerror.h (CRYPT_E_REVOKED): Delete; it is already
1884         correctly defined (per MSDN) in <wincrypt.h>
1885
1886 2012-01-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
1887
1888         Correct misuse of #ifdef, identified by 'make test'.
1889
1890         * include/shlwapi.h (enum ASSOCSTR, enum ASSOCDATA): Fix typos;
1891         /#ifdef _WIN32_IE >= 0x0600/s/#ifdef/#if/
1892
1893 2011-12-22  Corinna Vinschen  <corinna@vinschen.de>
1894
1895         Replace more incorrectly named manifest constants.
1896
1897         * include/winnt.h (JOB_OBJECT_LIMIT_BREAKAWAY_OK)
1898         (JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK): Define; make aliases for...
1899         (JOB_OBJECT_BREAKAWAY_OK, JOB_OBJECT_SILENT_BREAKAWAY): ...these old
1900         definitions respectively; retain for backward compatibility only.
1901
1902 2011-12-22  Corinna Vinschen  <corinna@vinschen.de>
1903
1904         Add missing PROCESS_QUERY_LIMITED_INFORMATION.
1905
1906         * include/winnt.h (PROCESS_QUERY_LIMITED_INFORMATION): Define it.
1907
1908 2011-08-19  Corinna Vinschen  <corinna@vinschen.de>
1909
1910         Add missing MAPVK manifest constant definitions.
1911
1912         * include/winuser.h (MAPVK_VK_TO_VSC, MAPVK_VSC_TO_VK): Define them.
1913         (MAPVK_VK_TO_CHAR, MAPVK_VSC_TO_VK_EX, MAPVK_VK_TO_VSC_EX): Likewise.
1914
1915 2011-08-05  Corinna Vinschen  <corinna@vinschen.de>
1916
1917         Correct some misspelled manifest constant names.
1918
1919         * include/winnt.h (IMAGE_DLL_CHARACTERISTICS_NX_COMPAT): Should be...
1920         (IMAGE_DLLCHARACTERISTICS_NX_COMPAT): ...this; define correctly; also
1921         alias to original misspelling, to maintain backward compatibility.
1922         (IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY): Likewise; should be...
1923         (IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY): ...this; define and alias.
1924         (IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE): Likewise; should be...
1925         (IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE): ...this; define and alias.
1926
1927 2011-07-29  Corinna Vinschen  <corinna@vinschen.de>
1928
1929         Add a missing Win2K sockets IOCTL feature.
1930
1931         * include/winsock2.h (SIO_UDP_CONNRESET): Define.
1932
1933 2011-05-22  Albrecht Schlosser  <vms-news@go4more.de>
1934
1935         Fix an incorrectly typed structure member.
1936
1937         * include/wingdi.h (GCP_RESULTSW): lpClass field defined as LPWSTR;
1938         should be LPSTR; correct it.
1939
1940 2011-05-15  Corinna Vinschen  <corinna@vinschen.de>
1941
1942         Add another missing manifest constant definition.
1943
1944         * include/winbase.h (STACK_SIZE_PARAM_IS_A_RESERVATION): Define.
1945
1946 2011-04-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
1947
1948         Avoid pollution of user namespace; fix MinGW-Bug [#1531].
1949
1950         * include/windef.h (PACKED): Delete macro definition; its name is not
1951         reserved, and may thus conflict with a user defined name; replace it...
1952         * include/wincon.h (KEY_EVENT_RECORD): ...at this sole point of use;
1953         use __attribute__((packed)) directly instead.
1954
1955 2011-04-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1956
1957         Fix bad typedef, per MinGW-Bug [#1529].
1958
1959         * include/imagehlp.h (PREAD_PROCESS_MEMORY_ROUTINE): Corrected, to
1960         conform with MSDN reference, as identified by Safety0ff.
1961
1962 2011-04-04  Corinna Vinschen  <corinna@vinschen.de>
1963
1964         Add a missing manifest constant definition.
1965
1966         * include/winnt.h (DOMAIN_ALIAS_RID_REMOTE_DESKTOP_USERS): Define.
1967
1968 2011-03-29  Corinna Vinschen  <corinna@vinschen.de>
1969
1970         Win2K and Vista userenv updates.
1971
1972         * include/userenv.h [_WIN32_WINNT >= 0x0500] (DeleteProfile)
1973         (GetAllUsersProfileDirectory, GetDefaultUserProfileDirectory)
1974         (ExpandEnvironmentStringsForUser): Define function aliases.
1975         [_WIN32_WINNT >= 0x0500] (DeleteProfileA, DeleteProfileW)
1976         (GetAllUsersProfileDirectoryA, GetAllUsersProfileDirectoryW)
1977         (GetDefaultUserProfileDirectoryA, GetDefaultUserProfileDirectoryW
1978         (ExpandEnvironmentStringsForUserA, ExpandEnvironmentStringsForUserW)
1979         (GetProfileType): Declare function prototypes.
1980         [_WIN32_WINNT >= 0x0600] (CreateProfile): Declare function prototype.
1981         [_WIN32_WINNT >= 0x0500] (PT_TEMPORARY, PT_ROAMING, PT_MANDATORY):
1982         New manifest constants; define them.
1983
1984 2011-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1985
1986         * Makefile.in: Increment CYGRELEASE to 2.
1987
1988 2011-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1989
1990         * lib/Makefile.in: Include GDIPLUS_HEADERS in dist target.
1991
1992 2011-03-11  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1993
1994         * include/w32api.h: Increment version to 3.17.
1995         * Makefile.in: Ditto.
1996
1997 2011-03-07  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1998
1999         * include/winbase.h (PSAPI_WORKING_SET_BLOCK)
2000         (PSAPI_WORKING_SET_INFORMATION): Move from here...
2001         * include/psapi.h (PSAPI_WORKING_SET_BLOCK)
2002         (PSAPI_WORKING_SET_INFORMATION): ...to here.
2003
2004 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2005
2006         * include/w32api.h: Increment version to 3.16.
2007         * Makefile.in: Ditto.
2008
2009 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2010
2011         * include/commctrl.h (NMTCKEYDOWN): Define.
2012
2013 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2014
2015         * include/wtsapi32.h (WTSSendMessageA, WTSSendMessageW, WTSSendMessage):
2016         Define.
2017
2018 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2019
2020         * include/winbase.h (PSAPI_WORKING_SET_BLOCK,
2021         PSAPI_WORKING_SET_INFORMATION): Define.
2022
2023 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2024
2025         * include/winbase.h (__GNUC_EXTENSION): Define, replacing __MINGW_EXTENSION.
2026
2027 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2028
2029         * lib/kernel32.def (FreeLibraryAndExitThread): Fix definition.
2030
2031 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2032
2033         * include/winbase.h (FILE_ENCRYPTABLE, FILE_IS_ENCRYPTED, FILE_READ_ONLY,
2034         FILE_ROOT_DIR, FILE_SYSTEM_ATTR, FILE_SYSTEM_DIR, FILE_SYSTEM_NOT_SUPPORT,
2035         FILE_UNKNOWN, FILE_USER_DISALLOWED): Define.
2036
2037 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2038
2039         * include/winioctl.h (_DRIVE_LAYOUT_INFORMATION_MBR): Add
2040         _DRIVE_LAYOUT_INFORMATION_MBR_DEFINED guard.
2041         * include/ddk/winddk.h (_DRIVE_LAYOUT_INFORMATION_MBR): Ditto.
2042
2043 2011-03-04  Seth Jackson  <sethj@users.sourceforge.net>
2044
2045         * include/winnt.h (PAGE_WRITECOMBINE): Define.
2046         * include/winbase.h (THREAD_MODE_BACKGROUND_BEGIN, THREAD_MODE_BACKGROUND_END): Define.
2047
2048 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2049
2050         * include/winbase.h (__MINGW_EXTENSION): Define.
2051         (OVERLAPPED): Add __MINGW_EXTENSION around nameless union /
2052         struct to correct issue with -std=c99.
2053
2054 2011-03-02  Corinna Vinschen  <corinna@vinschen.de>
2055
2056         * include/ddk/winddk.h (TIMER_INFORMATION_CLASS): Define.
2057         (TIMER_BASIC_INFORMATION): Define.
2058         (NtQueryTimer): Define.
2059         (ZwQueryTimer): Define.
2060
2061 2010-12-27  David Byron  <dbyron0@users.sourceforge.net>
2062
2063         * include/winioctl.h (STORAGE_BUS_TYPE): Define.
2064
2065 2010-12-27  Seth Jackson  <sethj@users.sourceforge.net>
2066
2067         * include/winbase.h (GetComputerNameEx): Define.
2068
2069 2010-12-27  Ryan Lortie  <desrt@desrt.ca>
2070
2071         * include/winbase.h (TzSpecificLocalTimeToSystemTime): Define.
2072
2073 2010-12-27  Markus Koenig  <basilo@users.sourceforge.net>
2074
2075         * include/gdiplus/gdipluspixelformats.h (PixelFormatIndexed,
2076         PixelFormatGDI, PixelFormatAlpha, PixelFormatPAlpha,
2077         PixelFormatExtended, PixelFormatCanonical, PixelFormatUndefined,
2078         PixelFormatDontCare, PixelFormat1bppIndexed, PixelFormat4bppIndexed,
2079         PixelFormat8bppIndexed, PixelFormat16bppGrayScale,
2080         PixelFormat16bppRGB555, PixelFormat16bppRGB565, PixelFormat16bpp1555,
2081         PixelFormat24bppRGB, PixelFormat32bppRGB, PixelFormat32bppARGB,
2082         PixelFormat32bppPARGB, PixelFormat48bppRGB, PixelFormat64bppARGB,
2083         PixelFormat64bppPARGB, PixelFormatMax): Fix definition.
2084
2085 2010-10-20  Seth Jackson  <sethj@users.sourceforge.net>
2086
2087         * include/commctrl.h (TC_ITEMHEADER[AW]): Rename to TCITEMHEADER[AW].
2088         Add defines for backward compatibility.
2089
2090 2010-12-27  Johann Hanne  <jonnyh33@users.sourceforge.net>
2091
2092         * include/oaidl.h (GetTypeComp, GetTypeComp, IsMatchingType): Fix defintion.
2093         * include/objidl.h (AddConnection, ReleaseConnection): Ditto.
2094         * include/winbase.h (EnumResourceLanguagesA, EnumResourceLanguagesW,
2095         EnumResourceNamesA, EnumResourceNamesW, EnumResourceTypesA,
2096         EnumResourceTypesW): Ditto.
2097         * include/winnt.h (_SYSTEM_POWER_CAPABILITIES): Ditto.
2098
2099 2010-12-27  Seth Jackson  <sethj@users.sourceforge.net>
2100
2101         * include/basetsd.h: (INT8, UINT8, INT16, UINT16): Define.
2102
2103 2010-12-27  Paul Sokolovsky  <pfalcon@users.sf.net>
2104
2105         * include/bdatypes.h: Add missing semicolons.
2106
2107 2010-08-26  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2108
2109         * include/w32api.h: Increment version to 3.15.
2110         * Makefile.in: Ditto.
2111
2112 2010-08-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2113
2114         * Makefile.in: Update naming convention and compression format (lzma),
2115         leaving existing naming convention and compression format as is for Cygwin.
2116
2117 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2118
2119         * include/oleacc.h (STATE_SYSTEM_HASPOPUP, STATE_SYSTEM_NORMAL,
2120         STATE_SYSTEM_PROTECTED): Define.
2121
2122         Thank you to Marcus von Appen for reporting the issue.
2123
2124 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2125
2126         * include/winuser.h (CF_DIBV5): Define.
2127         (CF_MAX): Adjust accordingly.
2128
2129         Thank you to Lenard Lindstrom for reporting the issue.
2130
2131 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2132
2133         * include/sspi.h (QuerySecurityContextToken): Define.
2134         * lib/secur32.def: Regenerate using gendef on a Win7 machine.
2135
2136         Thank you to Magnus Hagander for reporting the issue.
2137
2138 2010-08-25  Ali Sabil  <asabil@users.sourceforge.net>
2139
2140         * include/ocidl.h: Define COBJMACROS for IPropertyBag and IPropertyBag2.
2141
2142 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2143
2144         * include/shlwapi (ASSOCDATA): Update definition.
2145
2146         Thank you to Frederic Deschamps for reporting the issue.
2147
2148 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2149
2150         * include/winbase.h (COPY_FILE_OPEN_SOURCE_FOR_WRITE,
2151         COPY_FILE_ALLOW_DECRYPTED_DESTINATION, COPY_FILE_COPY_SYMLINK,
2152         COPY_FILE_NO_BUFFERING): Define.
2153
2154         Thank you to Roland Schwingel for reporting the issue.
2155
2156 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2157
2158         * include/winuser.h (HHOOK): Move definition from here...
2159         * include/windef.h: ...to here, as per MSDN.
2160
2161         Thank you to Samuel Thibault for reporting the issue.
2162
2163 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2164
2165         * include/winbase.h (GetEnvironmentStrings, GetEnvironmentStringsA): Per
2166         MSDN, change return type to LPCH.
2167         (GetEnvironmentStringsW): Per MSDN, change return type to LPWCH.
2168
2169         Thank you to Emmanuel Stapf for reporting the issue.
2170
2171 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2172
2173         * include/prsht.h (SNDMDG, POSTMSG): Fix typo.
2174         * include/windowsx.h (SNDMSG): Ditto.
2175
2176 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2177
2178         * include/prsht.h (SNDMSG, POSTMSG): Define macros and use throughout.
2179
2180         Thank you to Ozkan Sezer for reporting the issue.
2181
2182 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2183
2184         * include/windowsx.h (SNDMSG): Define macro and use throughout.
2185
2186         Thank you to Chris Oldwood for reporting the issue.
2187
2188 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2189
2190         * include/oleacc.h (AccessibleObjectFromEvent): Correct definition.
2191
2192         Thank you to Rick Walsh for reporting the issue.
2193
2194 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2195
2196         * include/winbase.h (MoveFileWithProcessA, MoveFileWithProgressW): Define.
2197
2198 2010-08-24  Vinky  <rabbit_vinky@users.sourceforge.net>
2199
2200         * include/winbase.h (OVERLAPPED): Correct definition.
2201
2202 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2203
2204         * include/winnt.h (IMAGE_NT_HEADERS32, IMAGE_NT_HEADERS64): Correct
2205         definition.
2206
2207         Thank you to Pasi Ruokola for reporting the issue.
2208
2209 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2210
2211         * include/exdisp.h (get_RegisterAsBrowser): Fix typo.
2212
2213         Thank you to cheznonnon for reporting the issue.
2214
2215 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2216
2217         * lib/ws2_32.def: Regenerate using gendef on a Win7 machine.
2218
2219 2010-08-24  Ozkan Sezer  <sezero@users.sourceforge.net>
2220
2221         * winnt.h: Fix several SUBLANG ID errors (ref:
2222         http://msdn.microsoft.com/en-us/library/dd318693(VS.85).aspx).
2223         (SUBLANG_UI_CUSTOM_DEFAULT): 0x05, not 0x03.
2224         (SUBLANG_HAUSA_NIGERIA): Bad ID name, correct one is ...
2225         (SUBLANG_HAUSA_NIGERIA_LATIN): ... this.
2226         (SUBLANG_INUKTITUT_CANADA_LATIN): 0x02, not 0x01.
2227         (SUBLANG_IRISH_IRELAND): 0x02, not 0x01.
2228         (SUBLANG_LAO_LAO_PDR): Bad ID name, correct one is ...
2229         (SUBLANG_LAO_LAO): ... this.
2230         (SUBLANG_LOWER_SORBIAN_GERMANY): 0x02, not 0x01.
2231         (SUBLANG_SAMI_SKOLT_FINLAND): 0x08, not 0x03.
2232         (SUBLANG_SAMI_INARI_FINLAND): 0x09, not 0x03.
2233         (SUBLANG_SYRIAC_SYRIA): define as SUBLANG_SYRIAC (what MSDN mentions).
2234         (SUBLANG_TIGRIGNA_ERITREA): 0x02, not 0x01.
2235         (SUBLANG_BENGALI_INDIA): 0x01, not 0x00.
2236         (SUBLANG_BENGALI_BANGLADESH): 0x02, not 0x01.
2237         (SUBLANG_PUNJABI_INDIA): 0x01, not 0x00.
2238         (SUBLANG_PUNJABI_PAKISTAN): not defined in MSDN.
2239         (SUBLANG_ROMANIAN_ROMANIA): 0x01, not 0x00.
2240         (SUBLANG_ROMANIAN_MOLDOVA): not defined in MSDN.
2241
2242 2010-08-24  LRN  <lrn1986@gmail.com>
2243
2244         * include/mmreg.h (MPEGLAYER3WAVEFORMAT, WAVE_FORMAT_UNKNOWN,
2245         WAVE_FORMAT_PCM, WAVE_FORMAT_ADPCM, WAVE_FORMAT_IEEE_FLOAT,
2246         WAVE_FORMAT_VSELP, WAVE_FORMAT_IBM_CVSD, WAVE_FORMAT_ALAW,
2247         WAVE_FORMAT_MULAW, WAVE_FORMAT_OKI_ADPCM, WAVE_FORMAT_DVI_ADPCM,
2248         WAVE_FORMAT_MEDIASPACE_ADPCM, WAVE_FORMAT_SIERRA_ADPCM,
2249         WAVE_FORMAT_G723_ADPCM, WAVE_FORMAT_DIGIFIX, WAVE_FORMAT_DIALOGIC_OKI_ADPCM,
2250         WAVE_FORMAT_MEDIAVISION_ADPCM, WAVE_FORMAT_CU_CODEC,
2251         WAVE_FORMAT_YAMAHA_ADPCM, WAVE_FORMAT_SONARC,
2252         WAVE_FORMAT_DSPGROUP_TRUESPEECH, WAVE_FORMAT_ECHOSC1,
2253         WAVE_FORMAT_AUDIOFILE_AF36, WAVE_FORMAT_APTX, WAVE_FORMAT_AUDIOFILE_AF10,
2254         WAVE_FORMAT_PROSODY_1612, WAVE_FORMAT_LRC, WAVE_FORMAT_DOLBY_AC2,
2255         WAVE_FORMAT_GSM610, WAVE_FORMAT_MSNAUDIO, WAVE_FORMAT_ANTEX_ADPCME,
2256         WAVE_FORMAT_CONTROL_RES_VQLPC, WAVE_FORMAT_DIGIREAL, WAVE_FORMAT_DIGIADPCM,
2257         WAVE_FORMAT_CONTROL_RES_CR10, WAVE_FORMAT_NMS_VBXADPCM,
2258         WAVE_FORMAT_ROLAND_RDAC, WAVE_FORMAT_ECHOSC3, WAVE_FORMAT_ROCKWELL_ADPCM,
2259         WAVE_FORMAT_ROCKWELL_DIGITALK, WAVE_FORMAT_XEBEC, WAVE_FORMAT_G721_ADPCM,
2260         WAVE_FORMAT_G728_CELP, WAVE_FORMAT_MSG723, WAVE_FORMAT_MPEG,
2261         WAVE_FORMAT_RT24, WAVE_FORMAT_PAC, WAVE_FORMAT_MPEGLAYER3,
2262         WAVE_FORMAT_LUCENT_G723, WAVE_FORMAT_CIRRUS, WAVE_FORMAT_ESPCM,
2263         WAVE_FORMAT_VOXWARE, WAVE_FORMAT_CANOPUS_ATRAC, WAVE_FORMAT_G726_ADPCM,
2264         WAVE_FORMAT_G722_ADPCM, WAVE_FORMAT_DSAT, WAVE_FORMAT_DSAT_DISPLAY,
2265         WAVE_FORMAT_VOXWARE_BYTE_ALIGNED, WAVE_FORMAT_VOXWARE_AC8,
2266         WAVE_FORMAT_VOXWARE_AC10, WAVE_FORMAT_VOXWARE_AC16,
2267         WAVE_FORMAT_VOXWARE_AC20, WAVE_FORMAT_VOXWARE_RT24,
2268         WAVE_FORMAT_VOXWARE_RT29, WAVE_FORMAT_VOXWARE_RT29HW,
2269         WAVE_FORMAT_VOXWARE_VR12, WAVE_FORMAT_VOXWARE_VR18,
2270         WAVE_FORMAT_VOXWARE_TQ40, WAVE_FORMAT_SOFTSOUND, WAVE_FORMAT_VOXWARE_TQ60,
2271         WAVE_FORMAT_MSRT24, WAVE_FORMAT_G729A, WAVE_FORMAT_MVI_MV12,
2272         WAVE_FORMAT_DF_G726, WAVE_FORMAT_DF_GSM610, WAVE_FORMAT_ISIAUDIO,
2273         WAVE_FORMAT_ONLIVE, WAVE_FORMAT_SBC24, WAVE_FORMAT_DOLBY_AC3_SPDIF,
2274         WAVE_FORMAT_ZYXEL_ADPCM, WAVE_FORMAT_PHILIPS_LPCBB, WAVE_FORMAT_PACKED,
2275         WAVE_FORMAT_RHETOREX_ADPCM, WAVE_FORMAT_IRAT, WAVE_FORMAT_VIVO_G723,
2276         WAVE_FORMAT_VIVO_SIREN, WAVE_FORMAT_DIGITAL_G723,
2277         WAVE_FORMAT_CREATIVE_ADPCM, WAVE_FORMAT_CREATIVE_FASTSPEECH8,
2278         WAVE_FORMAT_CREATIVE_FASTSPEECH10, WAVE_FORMAT_QUARTERDECK,
2279         WAVE_FORMAT_FM_TOWNS_SND, WAVE_FORMAT_BTV_DIGITAL, WAVE_FORMAT_VME_VMPCM,
2280         WAVE_FORMAT_OLIGSM, WAVE_FORMAT_OLIADPCM, WAVE_FORMAT_OLICELP,
2281         WAVE_FORMAT_OLISBC, WAVE_FORMAT_OLIOPR, WAVE_FORMAT_LH_CODEC,
2282         WAVE_FORMAT_NORRIS, WAVE_FORMAT_ISIAUDIO,
2283         WAVE_FORMAT_SOUNDSPACE_MUSICOMPRESS, WAVE_FORMAT_DVM, WAVE_FORMAT_RAW_AAC1,
2284         WAVE_FORMAT_MPEG_HEAAC, WAVE_FORMAT_MPEG_ADTS_AAC, WAVE_FORMAT_DRM,
2285         WAVE_FORMAT_DTS, WAVE_FORMAT_WMAVOICE9, WAVE_FORMAT_WMASPDIF,
2286         WAVE_FORMAT_WMAUDIO_LOSSLESS, WAVE_FORMAT_WMAUDIO2, WAVE_FORMAT_WMAUDIO3,
2287         WAVE_FORMAT_MPEG_LOAS, WAVE_FORMAT_RAW_SPORT, WAVE_FORMAT_ESST_AC3,
2288         WAVE_FORMAT_DTS2): Define.
2289         * include/msacm.h (HACMDRIVERID, HACMDRIVER, HACMSTREAM, HACMOBJ,
2290         ACMSTREAMHEADER, WAVEFILTER, acmDriverAddA, acmDriverAddW, acmDriverRemove,
2291         acmMetrics, acmStreamOpen, acmStreamSize, acmStreamPrepareHeader,
2292         acmStreamUnprepareHeader, acmStreamReset, acmStreamClose, acmStreamConvert):
2293         Define.
2294
2295 2010-08-23  LRN  <lrn1986@gmail.com>
2296
2297         * include/winbase.h (SYMBOLIC_LINK_FLAG_DIRECTORY, FILE_NAME_NORMALIZED,
2298         FILE_NAME_OPENED, VOLUME_NAME_DOS, VOLUME_NAME_GUID, VOLUME_NAME_NONE,
2299         VOLUME_NAME_NT, FILE_BASIC_INFO, FILE_STANDARD_INFO, FILE_NAME_INFO,
2300         FILE_STREAM_INFO, FILE_COMPRESSION_INFO, FILE_ATTRIBUTE_TAG_INFO,
2301         FILE_ID_BOTH_DIR_INFO, FILE_REMOTE_PROTOCOL_INFO, FILE_INFO_BY_HANDLE_CLASS,
2302         GetFileInformationByHandleEx, GetFinalPathNameByHandleA,
2303         GetFinalPathNameByHandleW): Define.
2304
2305 2010-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2306
2307         * lib/CheckConflicts.sh: New file.
2308
2309 2010-08-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2310
2311         * lib/kernel32.def (CopyLZFile, GetExpandedNameA, GetExpandedNameW, LZClose,
2312         LZCopy, LZInit, LZOpenFileA, LZOpenFileW, LZRead, LZSeek, OpenProcessToken,
2313         OpenThreadToken, RegCloseKey, RegCreateKeyExA, RegCreateKeyExW,
2314         RegDeleteKeyExA, RegDeleteKeyExW, RegDeleteValueA, RegDeleteValueW,
2315         RegEnumKeyExA, RegEnumKeyExW, RegEnumValueA, RegEnumValueW, RegFlushKey,
2316         RegGetKeySecurity, RegLoadKeyA, RegLoadKeyW, RegNotifyChangeKeyValue,
2317         RegOpenCurrentUser, RegOpenKeyExA, RegOpenKeyExW, RegOpenUserClassesRoot,
2318         RegQueryInfoKeyA, RegQueryInfoKeyW, RegQueryValueExA, RegQueryValueExW,
2319         RegRestoreKeyA, RegRestoreKeyW, RegSetKeySecurity, RegSetValueExA,
2320         RegSetValueW, RegUnLoadKeyA, RegUnLoadKeyW, RtlCaptureStackBackTrace,
2321         RtlFillMemory, RtlMoveMemory, RtlZeroMemory, SetThreadToken): Remove
2322         conflicting definition.
2323         * lib/th32.def: Remove.
2324         * lib/ntdll.def (RtlUnwind): Remove conflicting definition.
2325         * lib/version.def (VerLanguageNameA, VerLanguageNameW): Remove conflicting
2326         definition.
2327
2328 2010-08-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2329
2330         * lib/kernel32.def (CreateProcessAsUserW): Remove definition.
2331
2332 2010-08-20  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2333
2334         * lib/kernel32.def: Regenerate using gendef on a Win7 machine.
2335
2336 2010-08-19  Corinna Vinschen  <corinna@vinschen.de>
2337
2338         * include/winnt.h: Define FILE_ATTRIBUTE_VIRTUAL.  Change
2339         FILE_ATTRIBUTE_VALID_FLAGS accordingly.
2340         * include/ddk/winddk.h: Ditto.
2341
2342 2010-08-18  Ladislav Michl  <ladis@users.sourceforge.net>
2343
2344         * include/winbase.h (SYMBOLIC_LINK_FLAG_DIRECTORY, CreateSymbolicLinkW,
2345         CreateSymbolicLinkA, CreateSymbolicLink): Define
2346
2347 2010-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2348
2349         * lib/kernel32.def(FatalExit): Correct definiton.
2350
2351 2010-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2352
2353         * include/basetyps.h (REFGUID, REFIID, REFCLSID, REFFMTID): Revert change
2354         from 2010-07-17 since it breaks several applications.
2355
2356 2010-07-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2357
2358         * lib/kernel32.def: Regenerate using gendef.
2359
2360 2010-07-20  Ozkan Sezer  <sezero@users.sourceforge.net>
2361
2362         * include/commctrl.h (LVIF_GROUPID): Fix definition.
2363
2364 2010-07-20  Michael James  <james.me@gmail.com>
2365
2366         * include/commctrl.h (LVIF_COLUMNS): Fix definition.
2367
2368 2010-07-17  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2369
2370         * include/winnt.h (HEAP_MAKE_TAG_FLAGS, VALID_INHERIT_FLAGS): Correct
2371         definition.
2372         * include/rpcndr.h (NdrUnMarshConfStringHdr, NdrUnMarshCCtxtHdl,
2373         NdrMarshSCtxtHdl): Ditto.
2374         * include/basetyps.h (REFGUID, REFIID, REFCLSID, REFFMTID): Remove macro
2375         definition in favour of typedef definition.
2376
2377         Thank you to Yuta Tomino for reporting the issues.
2378
2379 2010-07-08  Markus Koenig  <basilo@users.sourceforge.net>
2380
2381         * include/gdiplus.h: New file.
2382         * include/gdiplus/gdiplus.h: New file.
2383         * include/gdiplus/gdiplusbase.h: New file.
2384         * include/gdiplus/gdiplusbrush.h: New file.
2385         * include/gdiplus/gdipluscolor.h: New file.
2386         * include/gdiplus/gdipluscolormatrix.h: New file.
2387         * include/gdiplus/gdipluseffects.h: New file.
2388         * include/gdiplus/gdiplusenums.h: New file.
2389         * include/gdiplus/gdiplusflat.h: New file.
2390         * include/gdiplus/gdiplusgpstubs.h: New file.
2391         * include/gdiplus/gdiplusgraphics.h: New file.
2392         * include/gdiplus/gdiplusheaders.h: New file.
2393         * include/gdiplus/gdiplusimageattributes.h: New file.
2394         * include/gdiplus/gdiplusimagecodec.h: New file.
2395         * include/gdiplus/gdiplusimaging.h: New file.
2396         * include/gdiplus/gdiplusimpl.h: New file.
2397         * include/gdiplus/gdiplusinit.h: New file.
2398         * include/gdiplus/gdipluslinecaps.h: New file.
2399         * include/gdiplus/gdiplusmatrix.h: New file.
2400         * include/gdiplus/gdiplusmem.h: New file.
2401         * include/gdiplus/gdiplusmetafile.h: New file.
2402         * include/gdiplus/gdiplusmetaheader.h: New file.
2403         * include/gdiplus/gdipluspath.h: New file.
2404         * include/gdiplus/gdipluspen.h: New file.
2405         * include/gdiplus/gdipluspixelformats.h: New file.
2406         * include/gdiplus/gdiplusstringformat.h: New file.
2407         * include/gdiplus/gdiplustypes.h: New file.
2408         * lib/gdiplus.c: New file containing GDI+ variable definitions
2409         and GUIDs.
2410         * lib/gdiplus.def: New file.
2411         * lib/Makefile.in: Add gdiplus.o to EXTRA_OBJS,
2412         add gdiplus.c to SOURCES.
2413         * lib/test.c: Include gdiplus.h.
2414
2415 2010-06-28  Rick Rankin  <rrankin1424-mingw@yahoo.com>
2416
2417         * include/psapi.h (PROCESS_MEMORY_COUNTERS_EX, PERFORMANCE_INFORMATION,
2418         GetPerformanceInfo): Define.
2419         * lib/psapi.def (GetPerformanceInfo): Define.
2420         * include/wincrypt.h (CryptEnumProvidersA, CryptEnumProvidersW,
2421         CryptEnumProviders): Define.
2422
2423 2010-02-17  LRN  <lrn1986@gmail.com>
2424
2425         * include/shlguid.h (IID_IFolderView): Define.
2426         * include/shlobj.h (IFolderView interface): Define.
2427         * lib/shell32.c (IID_IFolderView): Export.
2428
2429 2010-01-26  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
2430
2431         * include/shldisp.h (AUTOCOMPLETEOPTIONS): Add version guard around
2432         ACO_WORD_FILTER and ACO_NOPREFIXFILTERING.
2433
2434 2010-01-26  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
2435
2436         * include/shldisp.h (AUTOCOMPLETEOPTIONS): Add enum.
2437
2438 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2439
2440         * include/shlobj.h (SHParseDisplayName): Fix definition.
2441
2442 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2443
2444         * include/w32api.h: Increment version to 3.14.
2445         * Makefile.in: Ditto.
2446
2447 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2448
2449         * include/shlobj.h (SHParseDisplayName): Define.
2450
2451         Thanks to James Roberts-Thomson for the report.
2452
2453 2009-20-10  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
2454
2455         * include/wingdi.h (ENHMFENUMPROC): Correct definition.
2456
2457         Thanks to Alexander Vassilev for the report.
2458
2459 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2460
2461         * include/iprtrmib.h (MIB_IPADDRROW): Correct definition.
2462
2463         Thanks to Thomas Denk for the report.
2464
2465 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2466
2467         * include/winbase.h (UnmapViewOfFile): Correct definition.
2468
2469         Thanks to Dimitry Sibiryakov for the report.
2470
2471 2009-20-10  Aleksey Chernov  <virxkane@users.sourceforge.net>
2472
2473         * include/sspi.h: Include ntsecapi.h to correct postgresql build error.
2474
2475 2009-20-10  Heiko Hund  <heiko@ist.eigentlich.net>
2476
2477         * include/commctrl.h (GetMUILanguage, InitMUILanguage): Add prototypes.
2478         * lib/comctl32.def (GetMUILanguage, InitMUILanguage): Define.
2479
2480 2009-20-10  Michael James  <james.me@gmail.com>
2481
2482         * include/wingdi.h (CLEARTYPE_QUALITY): Define.
2483         * include/winuser.h (WM_KEYLAST): Alternative definition when _WIN32_WINNT
2484         >= 0x0501.
2485         (WM_UNICHAR,UNICODE_NOCHAR): Define.
2486         * lib/comctl32.def (DefSubclassProc@16,GetWindowSubclass@16,
2487         RemoveWindowSubclass@12): Add exports.
2488         * lib/gdi32.def (GetDCBrushColor@4,GetDCPenColor@4): Add exports.
2489
2490 2009-20-10  Jarkko Sakkinen  <jarkko.sakkinen@iki.fi>
2491
2492         * include/winuser.h (WM_TOUCHMOVE, WM_TOUCHDOWN, WM_TOUCHUP,
2493         TOUCHEVENTF_DOWN, TOUCHEVENTF_INRANGE, TOUCHEVENTF_MOVE,
2494         TOUCHEVENTF_NOCOALESCE, TOUCHEVENTF_PALM, TOUCHEVENTF_PEN,
2495         TOUCHEVENTF_PRIMARY, TOUCHEVENTF_UP, TOUCHEVENTMASKF_CONTACTAREA,
2496         TOUCHEVENTMASKF_EXTRAINFO, TOUCHEVENTMASKF_TIMEFROMSYSTEM, TOUCHINPUT,
2497         CloseTouchInputHandle, GetTouchInputInfo, IsTouchWindow,
2498         RegisterTouchWindow, UnregisterTouchWindow): Define.
2499         * lib/user32.def (CloseTouchInputHandle, GetTouchInputInfo, IsTouchWindow,
2500         RegisterTouchWindow, UnregisterTouchWindow): Define.
2501
2502 2009-20-10  Dmitry Potapov  <dpotapov@users.sourceforge.net>
2503
2504         * include/winver.h (VerQueryValue[AW]): Correct definition.
2505
2506 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2507
2508         * include/shlobj.h (SHARD): Add enum.
2509         (SHARD_PATH): Define based on UNICODE.
2510
2511         Thanks to Jacek Caban for the report.
2512
2513 2009-14-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2514
2515         * include/wingdi.h (_devicemodeW, _devicemodeA): Correct definition.
2516
2517         Thanks to Bruno Martinez for the report.
2518
2519 2009-14-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2520
2521         * include/shlobj.h (IDO_SHGIOI_SHARE, IDO_SHGIOI_LINK, IDO_SHGIOI_SLOWFILE,
2522         IDO_SHGIOI_DEFAULT, SHGetIconOverlayIndexW, SHGetIconOverlayIndexA,
2523         SHGetIconOverlayIndex): Define.
2524
2525         Thanks to Tim Kosse for the report.
2526
2527 2009-13-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2528
2529         * include/wincon.h (AttachConsole): Correct guard.
2530
2531         Thanks to Alexander Shaduri for the report.
2532
2533 2009-13-09  Robert Moerland  <rjmoerland@users.sourceforge.net>
2534
2535         * include/wininet.h (NTERNET_CACHE_ENTRY_INFOW): Correct definition.
2536         (DeleteUrlCacheEntryW, DeleteUrlCacheEntryA): Define.
2537
2538 2009-13-09  Jacky Lai  <crazyjacky@users.sourceforge.net>
2539
2540         * include/winerror.h: Fix typos in macro names.
2541
2542 2009-13-09  Jan Nijtmans  <nijtmans@users.sourceforge.net>
2543
2544         * include/winuser.h (SendMessageTimeoutA, SendMessageTimeoutW): Correct
2545         definition.
2546
2547 2009-11-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2548
2549         * include/winnt.h (PROCESS_SUSPEND_RESUME): Define.
2550
2551 2009-10-29  Charles Wilson  <mingw@cwilson.fastmail.fm>
2552
2553         Honor DESTDIR for winsup/mingw and winsup/w32api.
2554         Detect and report error if installation paths are win32
2555         format, but DESTDIR is non-empty.
2556
2557         * Makefile.in (install, uninstall): Use FLAGS_TO_PASS
2558         when invoking make in subdirs.
2559         * lib/Makefile.in (DESTDIR): Honor per convention.
2560         (need-DESTDIR-compatibility): New macro; define it and a
2561         corresponding rule.
2562         (fail-DESTDIR-compatibility): New dependency goal.
2563         (install-libraries, install-headers, uninstall-libraries,
2564         uninstall-headers): Require need-DESTDIR-compatibility.
2565         * lib/ddk/Makefile.in: Ditto.
2566         * lib/directx/Makefile.in: Ditto.
2567
2568 2009-10-04  Corinna Vinschen  <corinna@vinschen.de>
2569
2570         * include/winbase.h (CreateRestrictedToken): Declare for >= Win 2000.
2571         _WIN32_WINNT >= 0x0500.
2572         (DISABLE_MAX_PRIVILEGE, SANDBOX_INERT, LUA_TOKEN,
2573         WRITE_RESTRICTED): Define.
2574         (IsTokenRestricted): Declare for >= Win 2000.
2575
2576 2009-08-30  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2577
2578         * include/wtsapi32.h (WTSQuerySessionInformationA,
2579         WTSQuerySessionInformationW, WTSQuerySessionInformation, WTSFreeMemory):
2580         Moved to (_WIN32_WINNT >= 0x0500) guard.
2581         (thanks to Pierre Ossman)
2582
2583 2009-08-09  Andy Koppe  <andy.koppe@gmail.com>
2584
2585         * include/winnls.h (IS_HIGH_SURROGATE, IS_LOW_SURROGATE,
2586         IS_SURROGATE_PAIR): Define.
2587
2588 2009-07-27  Corinna Vinschen  <corinna@vinschen.de>
2589
2590         * include/winnt.h (FILE_SUPPORTS_HARD_LINKS,
2591         FILE_SUPPORTS_EXTENDED_ATTRIBUTES, FILE_SUPPORTS_OPEN_BY_FILE_ID,
2592         FILE_SUPPORTS_USN_JOURNALS): Define.  Add comment.
2593         * include/ddk/ntifs.h: Ditto.
2594         (FILE_SEQUENTIAL_WRITE_ONCE, FILE_SUPPORTS_TRANSACTIONS): Define.
2595
2596 2009-07-21  Corinna Vinschen  <corinna@vinschen.de>
2597
2598         * lib/msimg32.def (GetDCBrushColor, GetDCPenColor): Move entry points
2599         from here...
2600         * lib/gdo32.dll: ...to here.
2601
2602 2009-07-01  Corinna Vinschen  <corinna@vinschen.de>
2603
2604         * lib/comctl32.def (StrCSpnA@8, StrCSpnIA@8, StrCSpnW@8, StrChrA@8,
2605         StrChrIA@8, StrChrIW@8, StrChrW@8, StrCmpNA@12, StrCmpNIA@12,
2606         StrCmpNIW@12, StrCmpNW@12, StrRChrA@12, StrRChrIA@12, StrRChrW@12,
2607         StrRStrIA@12, StrRStrIW@12, StrStrA@8, StrStrIA@8, StrStrIW@8,
2608         StrStrW@8, StrToIntA@4, StrToIntW@4): Remove erroneously defined
2609         entry points.
2610
2611 2009-06-24  Corinna Vinschen  <corinna@vinschen.de>
2612
2613         * include/wtsapi32.h (WTSQueryUserToken, WTSEnumerateSessionsW,
2614         WTSEnumerateSessionsA): Add function prototypes.
2615         (struct _WTS_SESSION_INFOW, struct _WTS_SESSION_INFOA): Add typedefs.
2616         (WTS_SESSION_INFO, PWTS_SESSION_INFO, WTSEnumerateSessions): Add
2617         defines dependent on UNICODE setting.
2618
2619 2009-06-07  Corinna Vinschen  <corinna@vinschen.de>
2620
2621         * include/ddk/ntapi.h: Add NtXxx equivalent to ZwXxx where missing
2622         and vice versa.
2623         * include/ddk/ntifs.h: Ditto.
2624         * include/ddk/winddk.h: Ditto.
2625         * lib/ntdll.def (NtPlugPlayControl, NtQueryInstallUILanguage,
2626         ZwPlugPlayControl, ZwQueryInstallUILanguage): Add entry points defined
2627         in header, but missing in lib.  Omit NT4-only entry points.
2628
2629 2009-05-01  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2630
2631         * include/shellapi.h (SHIL_LARGE, SHIL_SMALL, SHIL_EXTRALARGE,
2632         SHIL_SYSSMALL, SHIL_JUMBO, SHIL_LAST SHIL_JUMBO, SHGetImageList): Define.
2633         * lib/shell32.def (SHGetImageList): Define.
2634
2635 2009-02-18  Corinna Vinschen  <corinna@vinschen.de>
2636
2637         * winnt.h: Add Vista token security extensions.
2638         (SID_HASH_SIZE): Define.
2639         (TOKEN_MANDATORY_POLICY_OFF, TOKEN_MANDATORY_POLICY_NO_WRITE_UP,
2640         TOKEN_MANDATORY_POLICY_NEW_PROCESS_MIN,
2641         TOKEN_MANDATORY_POLICY_VALID_MASK): Define.
2642         (SID_HASH_ENTRY): Define.
2643         (struct _SID_AND_ATTRIBUTES_HASH): Define.
2644         (struct _TOKEN_LINKED_TOKEN): Define.
2645         (struct _TOKEN_MANDATORY_LABEL): Define.
2646         (struct _TOKEN_MANDATORY_POLICY): Define.
2647         (struct _TOKEN_ELEVATION): Define.
2648         (struct _TOKEN_ACCESS_INFORMATION): Define.
2649         (enum _TOKEN_INFORMATION_CLASS): Conditionally define new Vista token
2650         information enumeration values.
2651
2652 2009-02-09  Corinna Vinschen  <corinna@vinschen.de>
2653
2654         * include/winioctl.h (FSCTL_ALLOW_EXTENDED_DASD_IO): Copy definition
2655         from ddk/ntifs.h.
2656
2657 2009-02-06  Linton Miller  <Linton.Miller@trivininc.com>
2658
2659         * include/wtsapi32.h (WTS_CURRENT_SESSION): Fix definition.
2660
2661 2009-01-19  Corinna Vinschen  <corinna@vinschen.de>
2662
2663         * include/winbase.h (enum _DEP_SYSTEM_POLICY_TYPE): Fix version guard.
2664
2665 2009-01-11  Henry Nestler  <henry@bigfoot.de>
2666
2667         * lib/ddk/ntoskrnl.def: Enable ZwQueryEaFile, ZwSetEaFile, NtQueryEaFile,
2668         NtSetEaFile.
2669
2670 2009-01-07  Corinna Vinschen  <corinna@vinschen.de>
2671
2672         * include/winbase.h (SCS_64BIT_BINARY): Define.
2673
2674 2008-12-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2675
2676         * include/w32api.h: Increment version to 3.13.
2677         * Makefile.in: Ditto.
2678
2679 2008-12-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2680
2681         * lib/glut.def: remove.
2682         * lib/glut32.def: ditto.
2683
2684 2008-11-11  Corinna Vinschen  <corinna@vinschen.de>
2685
2686         * include/winbase.h (PROCESS_DEP_ENABLE,
2687         PROCESS_DEP_DISABLE_ATL_THUNK_EMULATION): Define for >= Vista SP1.
2688         (enum _DEP_SYSTEM_POLICY_TYPE): Ditto.
2689         (GetProcessDEPPolicy, GetSystemDEPPolicy, SetProcessDEPPolicy): Ditto.
2690
2691 2008-10-09  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2692
2693         * include/mmsystem.h (sndAlias): Correct GCC4 warning.
2694
2695 2008-10-04  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2696
2697         * include/shellapi.h (NOTIFYICON_VERSION_4): Define.
2698
2699 2008-09-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2700
2701         * include/vfw.h (capSendMessage): Rename to __capSendMessage.
2702
2703 2008-09-24  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2704
2705         * include/vfw.h (WM_CAP_SET_CALLBACK_ERRORA, WM_CAP_SET_CALLBACK_ERRORW,
2706         WM_CAP_SET_CALLBACK_STATUS, WM_CAP_SET_CALLBACK_YIELD,
2707         WM_CAP_SET_CALLBACK_FRAMEA, WM_CAP_SET_CALLBACK_FRAMEW,
2708         WM_CAP_SET_CALLBACK_VIDEOSTREAM, WM_CAP_SET_CALLBACK_WAVESTREAM,
2709         WM_CAP_GET_USER_DATA, WM_CAP_SET_USER_DATA, WM_CAP_DRIVER_CONNECT,
2710         WM_CAP_DRIVER_DISCONNECT, WM_CAP_DRIVER_GET_NAMEA, WM_CAP_DRIVER_GET_NAMEW,
2711         WM_CAP_DRIVER_GET_VERSIONA, WM_CAP_DRIVER_GET_VERSIONW,
2712         WM_CAP_DRIVER_GET_CAPS, WM_CAP_FILE_SET_CAPTURE_FILEA,
2713         WM_CAP_FILE_SET_CAPTURE_FILEW, WM_CAP_FILE_GET_CAPTURE_FILEA,
2714         WM_CAP_FILE_GET_CAPTURE_FILEW, WM_CAP_FILE_ALLOCATE, WM_CAP_FILE_SAVEASA,
2715         WM_CAP_FILE_SAVEASW, WM_CAP_FILE_SET_INFOCHUNK, WM_CAP_FILE_SAVEDIBA,
2716         WM_CAP_FILE_SAVEDIBW, WM_CAP_EDIT_COPY, WM_CAP_SET_AUDIOFORMAT,
2717         WM_CAP_GET_AUDIOFORMAT, WM_CAP_DLG_VIDEOFORMAT, WM_CAP_DLG_VIDEOSOURCE,
2718         WM_CAP_DLG_VIDEODISPLAY, WM_CAP_GET_VIDEOFORMAT, WM_CAP_SET_VIDEOFORMAT,
2719         WM_CAP_DLG_VIDEOCOMPRESSION, WM_CAP_SET_PREVIEW, WM_CAP_SET_OVERLAY,
2720         WM_CAP_SET_PREVIEWRATE, WM_CAP_SET_SCALE, WM_CAP_GET_STATUS,
2721         WM_CAP_SET_SCROLL, WM_CAP_GRAB_FRAME, WM_CAP_GRAB_FRAME_NOSTOP,
2722         WM_CAP_SEQUENCE, WM_CAP_SEQUENCE_NOFILE, WM_CAP_SET_SEQUENCE_SETUP,
2723         WM_CAP_GET_SEQUENCE_SETUP, WM_CAP_SET_MCI_DEVICEA, WM_CAP_SET_MCI_DEVICEW,
2724         WM_CAP_GET_MCI_DEVICEA, WM_CAP_GET_MCI_DEVICEW, WM_CAP_STOP, WM_CAP_ABORT,
2725         WM_CAP_SINGLE_FRAME_OPEN, WM_CAP_SINGLE_FRAME_CLOSE, WM_CAP_SINGLE_FRAME,
2726         WM_CAP_PAL_OPENA, WM_CAP_PAL_OPENW, WM_CAP_PAL_SAVEA, WM_CAP_PAL_SAVEW,
2727         WM_CAP_PAL_PASTE, WM_CAP_PAL_AUTOCREATE, WM_CAP_PAL_MANUALCREATE,
2728         WM_CAP_SET_CALLBACK_CAPCONTROL): Define using WM_USER.
2729         (capSendMessage): Don't undef.
2730
2731 2008-09-21  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2732
2733         * incude/sspi.h: include subauth.h to fix issue of UNICODE_STRING being
2734         undefined.
2735
2736 2008-09-13  mega-squall  <mega-squall@users.sf.net>
2737
2738         * include/winnt.h (SUBLANG_BENGALI_INDIA, SUBLANG_PUNJABI_INDIA,
2739         SUBLANG_ROMANIAN_ROMANIA): Correct definition.
2740         (SUBLANG_BENGALI_BANGLADESH, SUBLANG_PUNJABI_PAKISTAN,
2741         SUBLANG_ROMANIAN_MOLDOVA): Define.
2742
2743 2008-09-11  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2744
2745         * include/shlwapi.h (ASSOCSTR): Update enum.
2746
2747 2008-09-07  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2748
2749         * include/w32api.h: Increment version to 3.12.
2750         * Makefile.in: Ditto.
2751
2752 2008-09-07  Michael Hentschel  <mikeh42@users.sourceforge.net>
2753
2754         * include/shlwapi.h (STIF_DEFAULT, STIF_SUPPORT_HEX): Define.
2755
2756 2008-09-07  alsemm  <alsemm@users.sourceforge.net>
2757
2758         * include/mlang.h (IMLangFontLink2::MapFont): Fix definition.
2759
2760 2008-09-07  Danny Smith  <dannysmith@users.sourceforge.net>
2761
2762         * include/ws2tcpip.h (IPV6_MREQ): Fix typo.
2763         Thanks to Richard Hughes for report.
2764
2765 2008-09-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2766
2767         * Makefile.in: Adjust to new naming standard for MinGW while maintaining old
2768         naming standard for Cygwin.
2769
2770 2008-08-30  Bo Yang  <techrazy@users.sourceforge.net>
2771
2772         * include/sspi.h: Fix PSecurityFunctionTableW structure.
2773
2774 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2775
2776         * include/ddk/scsi.h: Define READ_TOC formats.
2777         * lib/ddk/scsiport.def (ScsiPortGetDeviceBase): Fix export.
2778
2779 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2780
2781         * include/ddk/ndis.h (NDIS_MINIPORT_MAJOR_VERSION, NDIS_MINIPORT_MINOR_VERSION,
2782         struct NDIS_TASK_OFFLOAD_HEADER, PROTOCOL_RESERVED_SIZE_IN_PACKET,
2783         NdisGetFirstBufferFromPacketSafe, NdisMIndicateReceivePacket,
2784         NdisSetPacketPoolProtocolId, NdisMInitializeTimer, NdisMSetPeriodicTimer,
2785         NdisMCancelTimer): Define.
2786         (enum NDIS_ENCAPSULATION, struct NDIS_ENCAPSULATION_FORMAT): move in file.
2787         (struct _NDIS_PACKET): Define using _ANONYMOUS_UNION and ANONYMOUS_STRUCT to
2788         eliminate warnings.
2789         (NdisReinitializePacket): Rename from NdisReinitializePacketCounts.
2790         * lib/ddk/ndis.def (NdisInitAnsiString, NdisInitUnicodeString, NdisMCancelTimer,
2791         NdisMInitializeTimer, NdisMSetPeriodicTimer, NdisSetPacketPoolProtocolId):
2792         Export.
2793
2794 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2795
2796         * include/ddk/winddk.h (RtlStringCbCopyA, RtlStringCbPrintfA,
2797         RtlStringCbVPrintfA): define in terms of POSIX string functions.
2798
2799 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2800
2801         * include/ddk/winddk.h (KeRaiseIrql): Define.
2802         (KfRaiseIrql, KfLowerIrql): remove incorrect definitions.
2803
2804 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2805
2806         * include/ddk/winddk.h (KeFlushQueuedDpcs, KeMemoryBarrier): Define.
2807         (KeGetCurrentProcessorNumber): Fix incorrect member reference.
2808         (InterlockedIncrement, InterlockedDecrement): fix warning.
2809         * lib/ddk/ntoskrnl.def (KeFlushQueuedDpcs, KeMemoryBarrier): Export.
2810         (KeNumberProcessors): Export.
2811
2812 2008-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2813
2814         * include/shlwapi.h (ASSOCF_INIT_NOREMAPCLSID, ASSOCF_INIT_BYEXENAME,
2815         ASSOCF_OPEN_BYEXENAME, ASSOCF_INIT_DEFAULTTOSTAR,
2816         ASSOCF_INIT_DEFAULTTOFOLDER, ASSOCF_NOUSERSETTINGS, ASSOCF_NOTRUNCATE,
2817         ASSOCF_VERIFY, ASSOCF_REMAPRUNDLL, ASSOCF_NOFIXUPS, ASSOCF_IGNOREBASECLASS,
2818         ASSOCF_INIT_IGNOREUNKNOWN): Define.
2819
2820 2008-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2821
2822         * include/commctrl.h (LVN_MARQUEEBEGIN): Define.
2823
2824         Thanks to Tim Kosse <botg at users dot sf dot net>.
2825
2826 2008-08-22  Bo Yang  <techrazy@users.sourceforge.net>
2827
2828         * include/winnt.h (OWNER_SECURITY_INFORMATION, GROUP_SECURITY_INFORMATION,
2829         DACL_SECURITY_INFORMATION, SACL_SECURITY_INFORMATION): Correct.
2830         * include/winnt.h (OWNER_SECURITY_INFORMATION, GROUP_SECURITY_INFORMATION,
2831         DACL_SECURITY_INFORMATION, SACL_SECURITY_INFORMATION,
2832         LABEL_SECURITY_INFORMATION, UNPROTECTED_SACL_SECURITY_INFORMATION,
2833         UNPROTECTED_DACL_SECURITY_INFORMATION, PROTECTED_SACL_SECURITY_INFORMATION,
2834         PROTECTED_DACL_SECURITY_INFORMATION): Define.
2835
2836 2008-08-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2837
2838         * include/wtsapi32.h (_WTS_INFO_CLASS, _WTS_CONNECTSTATE_CLASS,
2839         WTSQuerySessionInformation, WTSFreeMemory): Define.
2840
2841 2008-07-25  Bo Yang  <techrazy@users.sourceforge.net>
2842
2843         * lib/gdi32.def (SetLayout): Export.
2844
2845 2008-07-25  Bo Yang  <techrazy@users.sourceforge.net>
2846
2847         * include/wincrypt.h (struct _CRYPT_KEY_PROV_PARAM,
2848         struct _CRYPT_KEY_PROV_INFO, CertGetCertificateContextProperty,
2849         CryptEnumKeyIdentifierProperties, CryptAcquireCertificatePrivateKey,
2850         CertCreateCertificateContext, CryptGetKeyIdentifierProperty,
2851         CertSetCertificateContextProperty, CertCompareCertificateName,
2852         CryptSetKeyIdentifierProperty, CertOIDToAlgId, CryptGetDefaultProviderA,
2853         CryptGetDefaultProviderW and many corresponding macroes): Define.
2854         * lib/crypt32.def (Export the above 11 functions): Export.
2855         * include/winerror.h (CRYPT_E_NOT_FOUND and other crypt related
2856         macroes): Define.
2857
2858
2859 2008-07-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2860
2861         * include/winuser.h (MENUGETOBJECTINFO, MNGO_NOINTERFACE, MNGO_NOERROR,
2862         MNGOF_TOPGAP, MNGOF_BOTTOMGAP): Define.
2863
2864 2008-07-24  techrazy  <techrazy@users.sourceforge.net>
2865
2866         * include/wingdi.h (OUT_PS_ONLY_PRECIS): Define.
2867
2868 2008-07-24  Corinna Vinschen  <corinna@vinschen.de>
2869
2870         * include/lmaccess.h (struct _USER_INFO_4): Define.
2871         (struct _USER_INFO_23): Define.
2872         (struct _GROUP_INFO_3): Define.
2873
2874 2008-07-14  Corinna Vinschen  <corinna@vinschen.de>
2875
2876         * include/iphlpapi.h (GetExtendedTcpTable): Add prototype.
2877         * include/iprtrmib.h (TCP_TABLE_CLASS, MIB_TCPROW_OWNER_PID,
2878         MIB_TCPTABLE_OWNER_PID, MIB_TCP6ROW_OWNER_PID,
2879         MIB_TCP6TABLE_OWNER_PID): Define.
2880         * lib/iphlpapi.def (GetExtendedTcpTable): Export.
2881
2882 2008-06-25  Brandon Sneed  <nivenh@sourceware.org>
2883
2884         * include/winbase.h (GetProcessHandleCount, GetSystemRegistryQuota,
2885         GetThreadIOPendingFlag): Modified to rely on _WIN32_WINNT 0x0501 instead
2886         of 0x0502.
2887         Bug reported by Thomas Denk.
2888
2889 2008-06-25  Brandon Sneed  <nivenh@sourceware.org>
2890
2891         * include/winbase.h (InterlockedIncrement, InterlockedDecrement,
2892         InterlockedCompareExchange, InterlockedExchange,
2893         InterlockedCompareExchangePointer, InterlockedExchangeAdd,
2894         InterlockedExchangePointer): Modified from PLONG to LONG volatile *.
2895         Bug reported by Erik Blake.
2896
2897 2008-06-20  Danny Smith  <dannysmith@users.sourceforge.net>
2898
2899         * lib/ddk/hal.def (HalTranslateBusAddress): Correct suffix.
2900         * lib/ddk/ntoskrnl.def (MmAllocateContiguousMemory): Correct suffix.
2901         Bug reported by Brian Hawley.
2902
2903 2008-06-17  Corinna Vinschen  <corinna@vinschen.de>
2904
2905         * include/dsgetdc.h (DS_FORCE_REDISCOVERY, DS_FORCE_REDISCOVERY,
2906         DS_DIRECTORY_SERVICE_REQUIRED, DS_DIRECTORY_SERVICE_PREFERRED,
2907         DS_GC_SERVER_REQUIRED, DS_PDC_REQUIRED, DS_BACKGROUND_ONLY,
2908         DS_IP_REQUIRED, DS_KDC_REQUIRED, DS_TIMESERV_REQUIRED,
2909         DS_WRITABLE_REQUIRED, DS_GOOD_TIMESERV_PREFERRED, DS_AVOID_SELF,
2910         DS_ONLY_LDAP_NEEDED, DS_IS_FLAT_NAME, DS_IS_DNS_NAME,
2911         DS_RETURN_DNS_NAME, DS_RETURN_FLAT_NAME): Define.
2912         (DsGetDcNameW, DsGetDcNameA): Declare.
2913         (DsGetDcName): Define.
2914         * lib/netapi32.def (DsGetDcNameA, DsGetDcNameW): Export.
2915
2916 2008-05-28  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2917
2918         * include/commctrl.h (NMLVODSTATECHANGE): Define.
2919
2920         Thanks to Tim Kosse <botg at users dot sf dot net>.
2921
2922 2008-05-28  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2923
2924         * include/winnt.h (SUBLANG_TIBETAN_BHUTAN): Fix definition.
2925
2926         Thanks to Nicola Di Nisio <nicoladinisio at users dot sf dot net>.
2927
2928 2008-05-15  Corinna Vinschen  <corinna@vinschen.de>
2929
2930         * include/winnt.h (FILE_SEQUENTIAL_WRITE_ONCE): Define.
2931         (FILE_SUPPORTS_TRANSACTIONS): Define.
2932
2933 2008-05-01  Bart Oldeman  <bartoldeman@users.sf.net>
2934
2935         * include/winuser.h (DEVICE_NOTIFY_WINDOW_HANDLE,
2936         DEVICE_NOTIFY_SERVICE_HANDLE): remove duplicate definition.
2937
2938 2008-05-02  Ramiro Polla  <ramiro@lisha.ufsc.br>
2939
2940         * include/vfw.h (WM_CAP_SET_CALLBACK_ERRORA, WM_CAP_SET_CALLBACK_ERRORW,
2941         WM_CAP_SET_CALLBACK_STATUS, WM_CAP_SET_CALLBACK_YIELD,
2942         WM_CAP_SET_CALLBACK_FRAMEA, WM_CAP_SET_CALLBACK_FRAMEW,
2943         WM_CAP_SET_CALLBACK_VIDEOSTREAM, WM_CAP_SET_CALLBACK_WAVESTREAM,
2944         WM_CAP_GET_USER_DATA, WM_CAP_SET_USER_DATA, WM_CAP_DRIVER_CONNECT,
2945         WM_CAP_DRIVER_DISCONNECT, WM_CAP_DRIVER_GET_NAMEA, WM_CAP_DRIVER_GET_NAMEW,
2946         WM_CAP_DRIVER_GET_VERSIONA, WM_CAP_DRIVER_GET_VERSIONW,
2947         WM_CAP_DRIVER_GET_CAPS, WM_CAP_FILE_SET_CAPTURE_FILEA,
2948         WM_CAP_FILE_SET_CAPTURE_FILEW, WM_CAP_FILE_GET_CAPTURE_FILEA,
2949         WM_CAP_FILE_GET_CAPTURE_FILEW, WM_CAP_FILE_ALLOCATE, WM_CAP_FILE_SAVEASA,
2950         WM_CAP_FILE_SAVEASW, WM_CAP_FILE_SET_INFOCHUNK, WM_CAP_FILE_SAVEDIBA,
2951         WM_CAP_FILE_SAVEDIBW, WM_CAP_EDIT_COPY, WM_CAP_SET_AUDIOFORMAT,
2952         WM_CAP_GET_AUDIOFORMAT, WM_CAP_DLG_VIDEOFORMAT, WM_CAP_DLG_VIDEOSOURCE,
2953         WM_CAP_DLG_VIDEODISPLAY, WM_CAP_GET_VIDEOFORMAT, WM_CAP_SET_VIDEOFORMAT,
2954         WM_CAP_DLG_VIDEOCOMPRESSION, WM_CAP_SET_PREVIEW, WM_CAP_SET_OVERLAY,
2955         WM_CAP_SET_PREVIEWRATE, WM_CAP_SET_SCALE, WM_CAP_GET_STATUS,
2956         WM_CAP_SET_SCROLL, WM_CAP_GRAB_FRAME, WM_CAP_GRAB_FRAME_NOSTOP,
2957         WM_CAP_SEQUENCE, WM_CAP_SEQUENCE_NOFILE, WM_CAP_SET_SEQUENCE_SETUP,
2958         WM_CAP_GET_SEQUENCE_SETUP, WM_CAP_SET_MCI_DEVICEA, WM_CAP_SET_MCI_DEVICEW,
2959         WM_CAP_GET_MCI_DEVICEA, WM_CAP_GET_MCI_DEVICEW, WM_CAP_STOP, WM_CAP_ABORT,
2960         WM_CAP_SINGLE_FRAME_OPEN, WM_CAP_SINGLE_FRAME_CLOSE, WM_CAP_SINGLE_FRAME,
2961         WM_CAP_PAL_OPENA, WM_CAP_PAL_OPENW, WM_CAP_PAL_SAVEA, WM_CAP_PAL_SAVEW,
2962         WM_CAP_PAL_PASTE, WM_CAP_PAL_AUTOCREATE, WM_CAP_PAL_MANUALCREATE,
2963         WM_CAP_SET_CALLBACK_CAPCONTROL, WM_CAP_SET_CALLBACK_ERROR,
2964         WM_CAP_SET_CALLBACK_FRAME, WM_CAP_DRIVER_GET_NAME,
2965         WM_CAP_DRIVER_GET_VERSION, WM_CAP_FILE_SET_CAPTURE_FILE,
2966         WM_CAP_FILE_GET_CAPTURE_FILE, WM_CAP_FILE_SAVEAS, WM_CAP_FILE_SAVEDIB,
2967         WM_CAP_SET_MCI_DEVICE, WM_CAP_GET_MCI_DEVICE, WM_CAP_PAL_OPEN,
2968         WM_CAP_PAL_SAVE, capSetCallbackOnError, capSetCallbackOnStatus,
2969         capSetCallbackOnYield, capSetCallbackOnFrame, capSetCallbackOnVideoStream,
2970         capSetCallbackOnWaveStream, capGetUserData, capSetUserData,
2971         capDriverConnect, capDriverDisconnect, capDriverGetName,
2972         capDriverGetVersion, capDriverGetCaps, capFileSetCaptureFile,
2973         capFileGetCaptureFile, capFileAlloc, capFileSaveAs, capFileSetInfoChunk,
2974         capFileSaveDIB, capEditCopy, capSetAudioFormat, capGetAudioFormat,
2975         capGetAudioFormatSize, capDlgVideoFormat, capDlgVideoSource,
2976         capDlgVideoDisplay, capGetVideoFormat, capGetVideoFormatSize,
2977         capSetVideoFormat, capDlgVideoCompression, capPreview, capOverlay,
2978         capPreviewRate, capPreviewScale, capGetStatus, capSetScrollPos,
2979         capGrabFrame, capGrabFrameNoStop, capCaptureSequence,
2980         capCaptureSequenceNoFile, capCaptureSetSetup, capCaptureGetSetup,
2981         capSetMCIDeviceName, capGetMCIDeviceName, capCaptureStop, capCaptureAbort,
2982         capCaptureSingleFrameOpen, capCaptureSingleFrameClose,
2983         capCaptureSingleFrame, capPaletteOpen, capPaletteSave, capPalettePaste,
2984         capPaletteAuto, capPaletteManual, capSetCallbackOnCapControl): Define.
2985         (CAPDRIVERCAPS, *LPCAPDRIVERCAPS, CAPINFOCHUNK, *LPCAPINFOCHUNK, CAPSTATUS,
2986         *LPCAPSTATUS, CAPTUREPARMS, *LPCAPTUREPARMS, VIDEOHDR, *LPVIDEOHDR): typedef.
2987
2988 2008-04-26  Yuval  <uvman@users.sourceforge.net>
2989
2990         * include/ntsecpkg.h (SECPKG_STATE_ENCRYPTION_PERMITTED,
2991         SECPKG_STATE_STRONG_ENCRYPTION_PERMITTED, SECPKG_STATE_DOMAIN_CONTROLLER,
2992         SECPKG_STATE_WORKSTATION, SECPKG_STATE_STANDALONE,
2993         LSA_TOKEN_INFORMATION_TYPE, SECPKG_EXTENDED_INFORMATION_CLASS,
2994         SECPKG_NAME_TYPE, SECPKG_PRIMARY_CRED, SECPKG_SUPPLEMENTAL_CRED,
2995         SECPKG_SUPPLEMENTAL_CRED_ARRAY, SECPKG_PARAMETERS,
2996         SECPKG_EVENT_DOMAIN_CHANGE, SECPKG_CLIENT_INFO, SecurityUserData,
2997         SECPKG_GSS_INFO, SECPKG_CONTEXT_THUNKS, SECPKG_MUTUAL_AUTH_LEVEL,
2998         SECPKG_CALL_INFO, SECPKG_EXTENDED_INFORMATION, PLSA_CALLBACK_FUNCTION,
2999         *PLSA_CLIENT_REQUEST, LSA_SEC_HANDLE, SEC_THREAD_START, SEC_ATTRS,
3000         *PLSA_REGISTER_CALLBACK, *PLSA_CREATE_LOGON_SESSION,
3001         *PLSA_DELETE_LOGON_SESSION, *PLSA_ADD_CREDENTIAL, *PLSA_GET_CREDENTIALS,
3002         *PLSA_DELETE_CREDENTIAL, *PLSA_ALLOCATE_LSA_HEAP, *PLSA_FREE_LSA_HEAP,
3003         *PLSA_ALLOCATE_CLIENT_BUFFER, *PLSA_FREE_CLIENT_BUFFER,
3004         *PLSA_COPY_TO_CLIENT_BUFFER, *PLSA_COPY_FROM_CLIENT_BUFFER,
3005         *PLSA_IMPERSONATE_CLIENT, *PLSA_UNLOAD_PACKAGE, *PLSA_DUPLICATE_HANDLE,
3006         *PLSA_SAVE_SUPPLEMENTAL_CREDENTIALS, *PLSA_CREATE_THREAD,
3007         *PLSA_GET_CLIENT_INFO, *PLSA_REGISTER_NOTIFICATION,
3008         *PLSA_CANCEL_NOTIFICATION, *PLSA_MAP_BUFFER, *PLSA_CREATE_TOKEN,
3009         *PLSA_AUDIT_LOGON, *PLSA_CALL_PACKAGE, *PLSA_FREE_LSA_HEAP,
3010         *PLSA_GET_CALL_INFO, *PLSA_CALL_PACKAGEEX, *PLSA_CREATE_SHARED_MEMORY,
3011         *PLSA_ALLOCATE_SHARED_MEMORY, *PLSA_FREE_SHARED_MEMORY,
3012         *PLSA_DELETE_SHARED_MEMORY, *PLSA_OPEN_SAM_USER, *PLSA_GET_USER_CREDENTIALS,
3013         *PLSA_GET_USER_AUTH_DATA, *PLSA_CLOSE_SAM_USER,
3014         *PLSA_CONVERT_AUTH_DATA_TO_TOKEN, *PLSA_CLIENT_CALLBACK,
3015         *PLSA_UPDATE_PRIMARY_CREDENTIALS, *PLSA_GET_AUTH_DATA_FOR_USER,
3016         *PLSA_CRACK_SINGLE_NAME, *PLSA_AUDIT_ACCOUNT_LOGON,
3017         *PLSA_CALL_PACKAGE_PASSTHROUGH, SECPKG_DLL_FUNCTIONS, LSA_DISPATCH_TABLE,
3018         LSA_SECPKG_FUNCTION_TABLE, *PLSA_AP_INITIALIZE_PACKAGE, *PLSA_AP_LOGON_USER,
3019         *PLSA_AP_CALL_PACKAGE, *PLSA_AP_LOGON_TERMINATED,
3020         *PLSA_AP_CALL_PACKAGE_UNTRUSTED, *PLSA_AP_CALL_PACKAGE_PASSTHROUGH,
3021         *PLSA_AP_LOGON_USER_EX, *PLSA_AP_LOGON_USER_EX2, SpInitializeFn,
3022         SpShutDownFn, SpGetInfoFn, SpAcceptCredentialsFn,
3023         SpAcquireCredentialsHandleFn, SpQueryCredentialsAttributesFn,
3024         SpFreeCredentialsHandleFn, SpSaveCredentialsFn, SpGetCredentialsFn,
3025         SpDeleteCredentialsFn, SpInitLsaModeContextFn, SpAcceptLsaModeContextFn,
3026         SpDeleteContextFn, SpApplyControlTokenFn, SpGetUserInfoFn,
3027         SpGetExtendedInformationFn, SpQueryContextAttributesFn, SpAddCredentialsFn,
3028         SpSetExtendedInformationFn, SpInstanceInitFn, SpInitUserModeContextFn,
3029         SpMakeSignatureFn, SpVerifySignatureFn, SpSealMessageFn, SpUnsealMessageFn,
3030         SpGetContextTokenFn, SpCompleteAuthTokenFn, SpFormatCredentialsFn,
3031         SpMarshallSupplementalCredsFn, SpExportSecurityContextFn,
3032         SpImportSecurityContextFn, SECPKG_FUNCTION_TABLE,
3033         SECPKG_USER_FUNCTION_TABLE, *SpLsaModeInitializeFn,
3034         *SpUserModeInitializeFn): Define.
3035         * include/sspi.h (SECURITY_STRING): Define.
3036
3037 2008-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
3038
3039         * include/specstrings.h: Add more dummy defines.
3040
3041 2008-04-22  Corinna Vinschen  <corinna@vinschen.de>
3042
3043         * include/winnt.h (SECURITY_MANDATORY_LABEL_AUTHORITY): Define.
3044         (SECURITY_MANDATORY_UNTRUSTED_RID): Define.
3045         (SECURITY_MANDATORY_LOW_RID): Define.
3046         (SECURITY_MANDATORY_MEDIUM_RID): Define.
3047         (SECURITY_MANDATORY_HIGH_RID): Define.
3048         (SECURITY_MANDATORY_SYSTEM_RID): Define.
3049         (SECURITY_MANDATORY_PROTECTED_PROCESS_RID): Define.
3050         (SECURITY_MANDATORY_MAXIMUM_USER_RID): Define.
3051         (SE_GROUP_INTEGRITY): Define.
3052         (SE_GROUP_INTEGRITY_ENABLED): Define.
3053
3054 2008-04-11  Corinna Vinschen  <corinna@vinschen.de>
3055
3056         * include/sddl.h (ConvertStringSidToSidA): Declare.
3057         (ConvertStringSidToSidW): Declare.
3058         (ConvertStringSidToSid): Define.
3059
3060 2008-03-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3061
3062         * include/mprapi.h: Add guard for MprAdminAcceptReauthentication function
3063         and MPR_INTERFACE_3 structure since they are available only in Windows
3064         Server 2008
3065
3066         Thanks to crackedmind  <crackedmind at sf dot net>.
3067
3068 2008-02-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3069
3070         * include/winnt.h: Update guard around KEY_WOW64_64KEY and KEY_WOW64_32KEY
3071         definitions.
3072         * include/winreg.h (KEY_WOW64_64KEY, KEY_WOW64_32KEY): Remove.
3073
3074 2008-02-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3075
3076         * include/winnt.h (KEY_WOW64_64KEY, KEY_WOW64_32KEY): Define.
3077
3078 2008-02-02  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3079
3080         * include/specstrings.h (IN, OUT, OPTIONAL): Remove.
3081         * include/windef.h (IN, OUT, OPTIONAL): Define.
3082
3083 2008-02-02  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3084
3085         * include/specstrings.h: new file, move pseudo modifiers from windef.h.
3086         * include/windef.h (__in, __inout, __in_opt, __in_bcound, __in_ecount,
3087         __out, __out_ecount_part, __struct_bcount, __field_ecount_opt,
3088         __out_bcount_opt): Move to specstrings.h.
3089
3090 2008-01-30  Brandon Sneed  <nivenh@sourceware.org>
3091
3092         * lib/bthprops.def: new file, bluetooth imports.
3093
3094 2008-01-30  Brandon Sneed  <nivenh@sourceware.org>
3095
3096         * include/windef.h (__in, __inout, __in_opt, __in_bcound, __in_ecount,
3097         __out, __out_ecount_part, __struct_bcount, __field_ecount_opt,
3098         __out_bcount_opt): Defined additional pseudo-modifiers.
3099
3100 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
3101         * include/ras.h (RAS_MaxDnsSuffix): corrected typo, was RAX_MaxDnsSuffix.
3102         (RASENTRYA, RASENTRYW): Added members (dwfOptions2, dwfOptions3, szDnsSuffix,
3103         dwTcpWindowSize, szPrerequisitePbk, szPrerequisiteEntry, dwRedialCount,
3104         dwRedialPause.
3105
3106 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
3107
3108         * include/winnt.h (SYSTEM_POWER_CONDITION): typedef.
3109         * include/winuser.h (PBT_POWERSETTINGCHANGE, DEVICE_NOTIFY_WINDOW_HANDLE,
3110         DEVICE_NOTIFY_SERVICE_HANDLE): define.
3111         * include/winuser.h (LPCGUID, HPOWERNOTIFY, POWERBROADCAST_SETTING): typedefs.
3112         * include/winuser.h (GUID_POWERSCHEME_PERSONALITY, GUID_MIN_POWER_SAVINGS,
3113         GUID_MAX_POWER_SAVINGS, GUID_TYPICAL_POWER_SAVINGS, GUID_ACDC_POWER_SOURCE,
3114         GUID_BATTERY_PERCENTAGE_REMAINING, GUID_IDLE_BACKGROUND_TASK,
3115         GUID_SYSTEM_AWAYMODE, GUID_MONITOR_POWER_ON): added externs for GUIDs.
3116         * include/winuser.h (RegisterPowerSettingNotification,
3117         UnregisterPowerSettingNotification): Add prototypes.
3118         * lib/user32.def: Added imports for the above prototypes.
3119         * lib/Makefile.in: Added build support for power-uuid.c.
3120         * lib/power-uuid.c: New file containing power GUID definitions.
3121
3122 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
3123
3124         * include/ras.h (RAS_MaxDnsSuffix): define.
3125
3126 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
3127
3128         * include/psapi.h (GetProcessImageFileNameA, GetProcessImageFileNameW):
3129         Add prototypes.
3130         * lib/psapi.def (GetProcessImageFileNameA@12, GetProcessImageFileNameW@12):
3131         Add exports.
3132
3133 2007-12-27  Chris Sutcliffe  <ir0nh34d@users.sf.net>
3134
3135         * include/w32api.h: Increment version to 3.11.
3136         * Makefile.in: Ditto.
3137
3138 2007-12-11  Dave Korn  <dave.korn@artimi.com>
3139
3140         * include/wincrypt.h (PCRYPT_DECODE_PARA):  Add missing typedef.
3141         (CERT_POLICY_MAPPINGS_INFO):  Move before CERT_POLICY_MAPPING.
3142
3143 2007-12-03  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3144
3145         * include/wingdi.h: Change WINVER guard to _WIN32_WINNT.
3146
3147 2007-12-03  techrazy  <techrazy@users.sourceforge.net>
3148
3149         * include/wingdi.h (NTM_NONNEGATIVE_AC, NTM_PS_OPENTYPE, NTM_TT_OPENTYPE,
3150         NTM_MULTIPLEMASTER, NTM_TYPE1, NTM_DSIG): define.
3151
3152 2007-11-21  Kevin Conaway  <kevin_conaway@users.sourceforge.net>
3153
3154         * include/wincrypt.h (CryptProtectData, CryptUnprotectData): define.
3155
3156 2007-11-21  elsapo  <elsapo@users.sourceforge.net>
3157
3158         * include/wincrypt.h (CERT_NAME_STR_COMMA_FLAG,
3159         CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG, CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG,
3160         CMC_ADD_ATTRIBUTES, CMC_ADD_EXTENSIONS, X509_CERT_PAIR,
3161         X509_CERTIFICATE_TEMPLATE, X509_CROSS_CERT_DIST_POINTS, CMC_DATA,
3162         X509_NAME_CONSTRAINTS, X509_POLICY_CONSTRAINTS, X509_POLICY_MAPPINGS,
3163         CMC_RESPONSE, CMC_STATUS, X509_ALGORITHM_IDENTIFIER, X509_ALTERNATE_NAME,
3164         PKCS_ATTRIBUTE, X509_AUTHORITY_INFO_ACCESS, X509_AUTHORITY_KEY_ID,
3165         X509_AUTHORITY_KEY_ID2, szOID_BASIC_CONSTRAINTS, X509_BASIC_CONSTRAINTS2,
3166         X509_BIOMETRIC_EXT, X509_BITS, X509_CERT, X509_CERT_CRL_TO_BE_SIGNED,
3167         X509_CERT_POLICIES, X509_CERT_REQUEST_TO_BE_SIGNED, X509_CERT_TO_BE_SIGNED,
3168         X509_CHOICE_OF_TIME, PKCS_CONTENT_INFO, PKCS_CONTENT_INFO_SEQUENCE_OF_ANY,
3169         X509_CRL_DIST_POINTS, RSA_CSP_PUBLICKEYBLOB, PKCS_CTL, X509_DSS_PARAMETERS,
3170         X509_DSS_SIGNATURE, X509_ECC_SIGNATURE, X509_ENHANCED_KEY_USAGE,
3171         X509_ENUMERATED, X509_EXTENSIONS, X509_INTEGER, X509_ISSUING_DIST_POINT,
3172         X509_KEY_ATTRIBUTES, X509_KEY_USAGE, X509_KEY_USAGE_RESTRICTION,
3173         X509_KEYGEN_REQUEST_TO_BE_SIGNED, X509_LOGOTYPE_EXT,
3174         X509_MULTI_BYTE_INTEGER, X509_MULTI_BYTE_UINT, X509_NAME, X509_NAME_VALUE,
3175         X509_OBJECT_IDENTIFIER, X509_OCTET_STRING, X509_PUBLIC_KEY_INFO,
3176         PKCS_RC2_CBC_PARAMETERS, CNG_RSA_PUBLIC_KEY_BLOB,
3177         PKCS_RSA_SSA_PSS_PARAMETERS, PKCS_RSAES_OAEP_PARAMETERS,
3178         ECC_CMS_SHARED_INFO, X509_SEQUENCE_OF_ANY, PKCS7_SIGNER_INFO,
3179         CMS_SIGNER_INFO, PKCS_SMIME_CAPABILITIES, PKCS_TIME_REQUEST,
3180         X509_UNICODE_NAME, X509_UNICODE_NAME_VALUE, PKCS_UTC_TIME,
3181         OCSP_SIGNED_REQUEST, OCSP_REQUEST, OCSP_RESPONSE,
3182         OCSP_BASIC_SIGNED_RESPONSE, OCSP_BASIC_RESPONSE, CRL_REASON_UNSPECIFIED,
3183         CRL_REASON_KEY_COMPROMISE, CRL_REASON_CA_COMPROMISE,
3184         CRL_REASON_AFFILIATION_CHANGED, CRL_REASON_SUPERSEDED,
3185         CRL_REASON_CESSATION_OF_OPERATION, CRL_REASON_CERTIFICATE_HOLD,
3186         CRL_REASON_REMOVE_FROM_CRL, CRYPT_ENCODE_ALLOC_FLAG,
3187         CRYPT_UNICODE_NAME_ENCODE_DISABLE_CHECK_TYPE_FLAG,
3188         CRYPT_UNICODE_NAME_ENCODE_ENABLE_T61_UNICODE_FLAG,
3189         CRYPT_UNICODE_NAME_ENCODE_ENABLE_UTF8_UNICODE_FLAG,
3190         CRYPT_UNICODE_NAME_ENCODE_FORCE_UTF8_UNICODE_FLAG,
3191         szOID_APPLICATION_CERT_POLICIES, szOID_APPLICATION_POLICY_CONSTRAINTS,
3192         szOID_APPLICATION_POLICY_MAPPINGS, szOID_AUTHORITY_INFO_ACCESS,
3193         szOID_AUTHORITY_KEY_IDENTIFIER, szOID_AUTHORITY_KEY_IDENTIFIER2,
3194         X509_BASIC_CONSTRAINTS, szOID_BIOMETRIC_EXT, szOID_CERT_EXTENSIONS,
3195         szOID_CERT_POLICIES, szOID_CERTIFICATE_TEMPLATE, szOID_CRL_NUMBER,
3196         szOID_CROSS_CERT_DIST_POINTS, szOID_DELTA_CRL_INDICATOR,
3197         szOID_ENROLLMENT_NAME_VALUE_PAIR, szOID_FRESHEST_CRL,
3198         szOID_ISSUING_DIST_POINT, szOID_NAME_CONSTRAINTS, szOID_CRL_DIST_POINTS,
3199         szOID_CRL_REASON_CODE, szOID_CRL_VIRTUAL_BASE, szOID_ECC_PUBLIC_KEY,
3200         szOID_ECDSA_SPECIFIED, szOID_ENHANCED_KEY_USAGE, szOID_ISSUER_ALT_NAME,
3201         szOID_ISSUER_ALT_NAME2, szOID_KEY_ATTRIBUTES, szOID_KEY_USAGE,
3202         szOID_KEY_USAGE_RESTRICTION, szOID_LOGOTYPE_EXT, szOID_POLICY_CONSTRAINTS,
3203         szOID_POLICY_MAPPINGS, szOID_RSA_SSA_PSS, szOID_RSAES_OAEP,
3204         szOID_SUBJECT_ALT_NAME, szOID_SUBJECT_ALT_NAME2,
3205         szOID_SUBJECT_KEY_IDENTIFIER, CMC_ADD_ATTRIBUTES_INFO,
3206         PCMC_ADD_ATTRIBUTES_INFO, CMC_ADD_EXTENSIONS_INFO, PCMC_ADD_EXTENSIONS_INFO,
3207         CERT_ALT_NAME_ENTRY, PCERT_ALT_NAME_ENTRY, CERT_ALT_NAME_INFO,
3208         PCERT_ALT_NAME_INFO, CERT_NAME_VALUE, PCERT_NAME_VALUE,
3209         CERT_POLICY_QUALIFIER_INFO, PCERT_POLICY_QUALIFIER_INFO,
3210         CERT_POLICY_CONSTRAINTS_INFO, PCERT_POLICY_CONSTRAINTS_INFO,
3211         CERT_POLICY_MAPPINGS_INFO, PCERT_POLICY_MAPPINGS_INFO, CERT_POLICY_MAPPING,
3212         PCERT_POLICY_MAPPING, CryptDecodeObjectEx, CryptEncodeObject,
3213         CryptEncodeObjectEx): define.
3214
3215 2007-11-21  Brian Dessent  <dessent@users.sourceforge.net>
3216
3217         * include/winbase.h (CheckTokenMembership): define.
3218
3219 2007-10-03  Jiri Malak  <Jiri.Malak@iol.cz>
3220
3221         * include/rpcndr.h: Missing NdrClientCall2 entry.
3222         * lib/rpcrt4.def: Ditto.
3223
3224 2007-10-03  Frank Fesevur  <ffes@users.sourceforge.net>
3225         * lib/scnsave.c: Multi-monitor support.
3226
3227 2007-08-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
3228
3229         * include/w32api.h: Increment version to 3.10.
3230         * Makefile.in: Ditto.
3231
3232 2007-08-02  Corinna Vinschen  <corinna@vinschen.de>
3233
3234         * include/winbase.h (ReOpenFile): Add prototype.
3235         * lib/kernel32.def (ReOpenFile@16): Add export.
3236
3237 2007-07-31  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3238
3239         * include/wtsapi32.h (WTS_CURRENT_SESSION, WTSDisconnectSession): Define.
3240
3241 2007-7-30  Martijn Wargers  <martijnw22@users.sourceforge.net>
3242
3243         * include/wingdi.h (GetTextExtentExPointI): Add prototype.
3244         * lib/gdi32.def (GetTextExtentExPointI@28): Add export.
3245
3246 2007-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
3247
3248         * include/wtypes.h (LPDECIMAL): Define.
3249         (DECIMAL_NEG, DECIMAL_SETZERO): Move definitions.
3250
3251 2007-07-18  Corinna Vinschen  <corinna@vinschen.de>
3252
3253         * include/winnt.h (SE_TRUSTED_CREDMAN_ACCESS_NAME): Define.
3254
3255 2007-07-17  Corinna Vinschen  <corinna@vinschen.de>
3256
3257         * include/winnt.h (FILE_READ_ONLY_VOLUME): Define.
3258         * include/ddk/ntifs.h (FILE_READ_ONLY_VOLUME): Define.
3259
3260 2007-07-12  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3261
3262         * include/winuser.h (FE_FONTSMOOTHINGSTANDARD, FE_FONTSMOOTHINGCLEARTYPE):
3263         Define.
3264
3265 2007-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
3266
3267         * include/pbt.h (PBT_APMRESUMEAUTOMATIC) Define.
3268         * include/winuser.h: (PBT_APMQUERYSUSPEND, PBT_APMQUERYSTANDBY,
3269         PBT_APMQUERYSUSPENDFAILED, PBT_APMQUERYSTANDBYFAILED,
3270         PBT_APMSUSPEND, PBT_APMSTANDBY, PBT_APMRESUMECRITICAL,
3271         PBT_APMRESUMESUSPEND, PBT_APMRESUMESTANDBY, PBT_APMBATTERYLOW,
3272         PBT_APMPOWERSTATUSCHANGE, PBT_APMOEMEVENT, PBT_APMRESUMEAUTOMATIC):
3273         Sync with include/pbt.h.
3274
3275 2007-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
3276
3277         [mingw-Bugs-1751518]
3278         * include/mshtml.h (IHTMLDocument2): Correct spelling of put_URL,
3279         get_URL.
3280
3281         [mingw-Bugs-1751565]
3282         * include/basetyps.h (IID); Guard with __IID_DEFINED__.
3283
3284         [mingw-Bugs-1751595]
3285         * include/exdisp.h (DWebBrowserEvents2): Remove undocumented STDDISP
3286         methods.
3287
3288         Thanks to Yuji Kuwabara  <yujikuwabara at sf dot net>.
3289
3290 2007-07-10  Danny Smith  <dannysmith@users.sourceforge.net>
3291
3292         [mingw-Bugs-1750898]
3293         * include/mmsystem.h (MIXERCONTROL): Correct UNICODE mapping.
3294         Thanks to Yuji Kuwabara  <yujikuwabara at sf dot net>.
3295
3296 2007-07-09  Danny Smith  <dannysmith@users.sourceforge.net>
3297
3298         [mingw-Bugs-1749305]
3299         * lib/kernel32.def (GetConsoleProcessList@8):  Add export.
3300
3301 2007-07-02  Przemek Czerkas  <pczerkas@gmail.com>
3302
3303         * include/shlobj.h: Add CSIDL_MYMUSIC and CSIDL_MYVIDEO.
3304
3305 2007-07-02  Danny Smith  <dannysmith@users.sourceforge.net>
3306
3307         * include/oaidl.h: Include windows.h and ole2.h,
3308         unless COM_NO_WINDOWS_H.
3309
3310         [mingw-Bugs-1742130]
3311         * include/oaidl.h (struct tagVARIANT): Add union members
3312         LONGLONG  * pllVal and ULONGLONG * pullVal.
3313
3314 2007-07-01  Danny Smith  <dannysmith@users.sourceforge.net>
3315
3316         * include/ws2tcpip.h (s6_addr32): Correct definition.
3317         Thanks to Alfred E. Heggestad <aeh at db dot org>
3318
3319 2007-05-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3320
3321         * lib/secur32.def (InitSecurityInterfaceA, InitSecurityInterfaceW): Define.
3322
3323         Thanks to Jim Marshall (jim dot marshall at wbemsolutions dot com) for
3324         supplying the information.
3325
3326 2007-05-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3327
3328         * include/shellapi.h (NIN_POPUPOPEN, NIN_POPUPCLOSE): Define.
3329
3330 2007-04-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3331
3332         * include/shellapi.h (NOTIFYICONDATAA, NOTIFYICONDATAW): Updated to support
3333         Vista.
3334
3335 2007-04-20  Matthias Miller  <matthiasmiller@users.sourceforge.net>
3336
3337          * include/wincrypt.h (CRYPTPROTECT_PROMPTSTRUCT, CRYPTPROTECT_UI_FORBIDDEN,
3338         CRYPTPROTECT_LOCAL_MACHINE): Define.
3339
3340 2007-04-15  Piotr Wyderski  <piotr.wyderski@wp.pl>
3341
3342         * include/winbase.h (SetInformationJobObject, QueryInformationJobObject):
3343         Define.
3344
3345 2007-03-30  Brian Dessent  <brian@dessent.net>
3346
3347         * lib/kernel32.def (CreateMemoryResourceNotification@4): Define.
3348
3349 2007-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
3350
3351         * include/w32api.h: Increment version to 3.9.
3352         * Makefile.in: Ditto.
3353
3354 2007-03-23  Corinna Vinschen  <corinna@vinschen.de>
3355
3356         * include/psapi.h (GetMappedFileName): Fix messed up checkin.
3357
3358 2007-03-23  Matthew Gregan  <kinetik@flim.org>
3359
3360         * include/psapi.h (GetMappedFileName): Rename from GetMappedFilenameEx.
3361
3362 2007-03-06  Brandon Sneed  <brandon@oqo.com>
3363
3364         * include/setupapi.h: Added SetupConfigureWmiFromInfSectionA
3365         Added SetupConfigureWmiFromInfSectionW
3366         Added SetupConfigureWmiFromInfSection define to unicode and non-unicode sections
3367
3368         * lib/setupapi.def: Added exports for SetupConfigureWmiFromInfSectionA and W
3369
3370         * include/winuser.h: Added PBT_APMQUERYSUSPEND
3371         Added PBT_APMQUERYSTANDBY
3372         Added PBT_APMQUERYSUSPENDFAILED
3373         Added PBT_APMQUERYSTANDBYFAILED
3374         Added PBT_APMSUSPEND
3375         Added PBT_APMSTANDBY
3376         Added PBT_APMRESUMECRITICAL
3377         Added PBT_APMRESUMESUSPEND
3378         Added PBT_APMRESUMESTANDBY
3379         Added PBT_APMBATTERYLOW
3380         Added PBT_APMPOWERSTATUSCHANGE
3381         Added PBT_APMOEMEVENT
3382         Added PBT_APMRESUMEAUTOMATIC
3383
3384         * include/wtsapi32.h: New file
3385
3386         * include/wingdi.h: Added DM_DISPLAYORIENTATION define for use with DMDO_* defines
3387
3388 2007-03-05  Jan Nijtmans  <nijtmans@users.sourceforge.net>
3389
3390         * include/ddeml.h (DdeCreateStringHandleA, DdeCreateStringHandleW): Switch
3391         argument to constant.
3392
3393 2007-02-18  Jiri Malak  <jiri.malak@iol.cz>
3394
3395         * include/windef.h [WATCOM]: Fix !NONAMELESSUNION defines.
3396         * include/winnt.h [WATCOM] (GetCurrentFiber, GetFiberData):
3397         Add prototypes.
3398         [WATCOM] (NtCurrentTeb): Add protype and inline asm definition.
3399
3400 2007-02-18  Vesa Jääskeläinen  <chaac@users.sourceforge.net>
3401
3402         * lib/user32.def (InternalGetWindowText): Add stub.
3403
3404 2007-02-11  Daniel Atallah  <datallah@users.sourceforge.net>
3405
3406         * include/winnt.h (LANG_SERBIAN_NEUTRAL, LANG_BOSNIAN,
3407         LANG_BOSNIAN_NEUTRAL): Define.
3408
3409 2007-02-11  Daniel Schlyder  <thrug@users.sourceforge.net>
3410
3411         * include/winuser.h: Add guards around TITLEBARINFO and
3412         GetTitleBarInfo().
3413
3414 2007-01-11  Gisle Vanem  <giva@users.sourceforge.net>
3415
3416         * include/winbase.h (struct _OVERLAPPED): Change type of
3417         Internal, InternalHigh members to ULONG_PTR.
3418         (PAPCFUNC): Change DWORD parameter to ULONG_PTR.
3419         (CreateIoCompletionPort): Likewise.
3420         (PostQueuedCompletionStatus): Likewise.
3421         (QueueUserAPC): Likewise.
3422
3423 2007-01-06  Pierre A. Humblet  <Pierre.Humblet@ieee.org>
3424
3425         * include/windns.h (DNS_TYPE_RP, DNS_TYPE_AFSDB, DNS_TYPE_X25,
3426         DNS_TYPE_ISDN, DNS_TYPE_RT, DNS_TYPE_NSAP, DNS_TYPE_NSAPPTR,
3427         DNS_TYPE_SIG, DNS_TYPE_KEY, DNS_TYPE_PX, DNS_TYPE_GPOS,
3428         DNS_TYPE_AAAA, DNS_TYPE_LOC, DNS_TYPE_NXT, DNS_TYPE_EID,
3429         DNS_TYPE_NIMLOC, DNS_TYPE_SRV, DNS_TYPE_ATMA, DNS_TYPE_NAPTR,
3430         DNS_TYPE_KX, DNS_TYPE_CERT, DNS_TYPE_A6, DNS_TYPE_DNAME,
3431         DNS_TYPE_SINK, DNS_TYPE_OPT, DNS_TYPE_UINFO, DNS_TYPE_UID,
3432         DNS_TYPE_GID, DNS_TYPE_UNSPEC, DNS_TYPE_ADDRS, DNS_TYPE_TKEY,
3433         DNS_TYPE_TSIG, DNS_TYPE_IXFR, DNS_TYPE_AXFR, DNS_TYPE_MAILB,
3434         DNS_TYPE_MAILA, DNS_TYPE_ALL, DNS_TYPE_ANY): Add enum values.
3435
3436 2006-11-21  Danny Smith  <dannysmith@users.sourceforge.net>
3437
3438         * Makefile.in: Add aclocal.m4 to source release.
3439
3440 2006-11-18  Chris Sutcliffe  <ir0nh34d@users.sf.net>
3441
3442         * include/w32api.h: Increment version to 3.8.
3443         * Makefile.in: Ditto.
3444
3445 2006-11-13  Daniel Schlyder  <thrug@users.sourceforge.net>
3446
3447         * include/winnt.h (VER_SUITE_EMBEDDEDNT, VER_SUITE_SINGLEUSERTS,
3448         VER_SUITE_STORAGE_SERVER, VER_SUITE_COMPUTE_SERVER): Define.
3449
3450         * include/winuser.h (SM_STARTER, SM_SERVERR2): Define.
3451
3452 2006-11-02  Danny Smith  <dannysmith@users.sourceforge.net>
3453
3454         * include/winuser.h (LR_DEFAULTSIZE): Remove duplicate.
3455
3456         * include/winnt.h (GetCurrentFiber): Remove extern declaration.  Make
3457         inline static.
3458         (GetFiberData): Likewise.
3459         * lib/kernel32.c: Remove.
3460         * lib/Makefile.in: Remove reference to kernel32.[co].
3461
3462 2006-10-31  Corinna Vinschen  <corinna@vinschen.de>
3463
3464         * include/winnt.h (SE_RELABEL_NAME): Define.
3465         (SE_INCREASE_WORKING_SET_NAME): Define.
3466         (SE_TIME_ZONE_NAME): Define.
3467         (SE_CREATE_SYMBOLIC_LINK_NAME): Define.
3468
3469 2006-10-31  Corinna Vinschen  <corinna@vinschen.de>
3470
3471         * include/winnt.h (IO_REPARSE_TAG_SYMLINK): Define.
3472         (struct _REPARSE_DATA_BUFFER): Add missing Flags field to
3473         SymbolicLinkReparseBuffer substructure.
3474
3475 2006-10-29  Daniel Atallah  <datallah@users.sourceforge.net>
3476
3477         * lib/ws2_32.def (WSANSPIoctl): Add to lib.
3478
3479 2006-10-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3480
3481         * lib/Makefile.in: Fix order for 'all' rule.
3482
3483 2006-10-12  Danny Smith  <dannysmith@users.sourceforge.net>
3484
3485         * include/winuser.h (LR_DEFAULTSIZE, LR_VGACOLOR): Define.
3486
3487 2006-10-05  Danny Smith  <dannysmith@users.sourceforge.net>
3488
3489         * include/winreg.h (RegDeleteKeyEx{A|W}): Add prototype and UNICODE
3490         mappings.
3491         (KEY_WOW64_32KEY, KEY_WOW64_64KEY): Define.
3492         * lib/advapi.def (RegDeleteKeyEx{A|W}): Export.
3493
3494 2006-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
3495
3496         * include/rpc.h: Add whitespace.
3497         * include/winnt.h (C_ASSERT): Define.
3498
3499 2006-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
3500
3501         [mingw-Bugs-1568067]
3502         * include/winuser.h: (DISP_CHANGE_BADDUALVIEW): Define.
3503         * include/wingdi.h: (DM_POSITION): Define.
3504
3505 2006-10-03  Danny Smith  <dannysmith@users.sourceforge.net>
3506
3507         * lib/rpcrt4.def: Remove "_imp__"-prefixed export symbols.
3508         * lib/user32.def: Likewise.
3509
3510 2006-09-11  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
3511
3512         * lib/Makefile.in: fix typo.
3513         * lib/ddk/Makefile.in: fix typo.
3514         * lib/directx/Makefile.in: fix typo.
3515
3516         Thanks to Keith Marshall (keithmarshall at users dot sourceforge dot net)
3517         for pointing it out.
3518
3519 2006-09-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3520
3521         * Makefile.in: Remove files from lib directory with distclean target
3522
3523 2006-09-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3524
3525         * include/winuser.h (CS_DROPSHADOW): Define.
3526
3527 2006-09-08  Michael Gerdau  <mgdde@users.sourceforge.net>
3528
3529         * include/uxtheme.h: (TMT_GRADIENTCOLOR4, TMT_GRADIENTCOLOR5,
3530         TMT_SHADOWCOLOR, TMT_GLOWCOLOR, TMT_TEXTBORDERCOLOR,
3531         TMT_TEXTSHADOWCOLOR, TMT_GLYPHTEXTCOLOR, TMT_GLYPHTRANSPARENTCOLOR,
3532         TMT_FILLCOLORHINT, TMT_BORDERCOLORHINT, TMT_ACCENTCOLORHINT):
3533
3534         Increase each constant by 1.
3535
3536 2006-09-07  Danny Smith  <dannysmith@users.sourceforge.net>
3537
3538         [mingw-Bugs-1553275]
3539         * include/wingdi.h (SetLayout): Add prototype.
3540         (GetLayout): Likewise.
3541
3542 2006-09-02  Danny Smith  <dannysmith@users.sourceforge.net>
3543
3544         [mingw-Bugs-1550139]
3545         * include/oleauto.h (GetRecordInfoFromTypeInfo): Add prototype.
3546         Tanks to:  Samit Basu <samitbasu at sf dot net>
3547         (GetRecordInfoFromGuids): Add prototype.
3548
3549 2006-09-01  Danny Smith  <dannysmith@users.sourceforge.net>
3550
3551         * include/winbase.h: Add comment about 'missing' SEM flag.
3552
3553 2006-08-30  Corinna Vinschen  <corinna@vinschen.de>
3554
3555         * configure.in: Substitute with_cross_host in depending files.
3556         * configure: Regenerate.
3557         * lib/Makefile.in: Add with_cross_host to allow more granular checks.
3558         Set installation directories accordingly.
3559         * lib/ddk/Makefile.in: Ditto.
3560         * lib/directx/Makefile.in: Ditto.
3561
3562 2006-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
3563
3564         * lib/wtsapi32.def (WTSGetActiveConsoleSessionId). Move from here...
3565         * lib/kernel32.def (WTSGetActiveConsoleSessionId). ...to here.
3566         Bug reported by: <macleone at users dot sf dot net>
3567
3568 2006-07-29  Danny Smith  <dannysmith@users.sourceforge.net>
3569
3570         Update some more IMAGE relocation type indicators
3571         to PECOFF v8 (May, 2006) specs.
3572
3573         * include/winnt.h (IMAGE_REL_SH3_ABSOLUTE,
3574         IMAGE_REL_SH3_DIRECT16, IMAGE_REL_SH3_DIRECT32,
3575         IMAGE_REL_SH3_DIRECT8, IMAGE_REL_SH3_DIRECT8_WORD,
3576         IMAGE_REL_SH3_DIRECT8_LONG, IMAGE_REL_SH3_DIRECT4,
3577         IMAGE_REL_SH3_DIRECT4_WORD, IMAGE_REL_SH3_DIRECT4_LONG,
3578         IMAGE_REL_SH3_PCREL8_WORD, IMAGE_REL_SH3_PCREL8_LONG,
3579         IMAGE_REL_SH3_PCREL12_WORD, IMAGE_REL_SH3_STARTOF_SECTION,
3580         IMAGE_REL_SH3_SIZEOF_SECTION, IMAGE_REL_SH3_SECTION,
3581         IMAGE_REL_SH3_SECREL, IMAGE_REL_SH3_DIRECT32_NB,
3582         IMAGE_REL_SH3_GPREL4_LONG, IMAGE_REL_SH3_TOKEN,
3583         IMAGE_REL_SHM_PCRELPT, IMAGE_REL_SHM_REFLO,
3584         IMAGE_REL_SHM_REFHALF, IMAGE_REL_SHM_RELLO,
3585         IMAGE_REL_SHM_RELHALF, IMAGE_REL_SHM_PAIR,
3586         IMAGE_REL_SHM_NOMODE): Add defines.
3587
3588         (IMAGE_REL_M32R_ABSOLUTE, IMAGE_REL_M32R_ADDR32,
3589         IMAGE_REL_M32R_ADDR32NB, IMAGE_REL_M32R_ADDR24,
3590         IMAGE_REL_M32R_GPREL16, IMAGE_REL_M32R_PCREL24,
3591         IMAGE_REL_M32R_PCREL16, IMAGE_REL_M32R_PCREL8,
3592         IMAGE_REL_M32R_REFHALF, IMAGE_REL_M32R_REFHI,
3593         IMAGE_REL_M32R_REFLO, IMAGE_REL_M32R_PAIR,
3594         IMAGE_REL_M32R_SECTION, IMAGE_REL_M32R_SECREL,
3595         IMAGE_REL_M32R_TOKEN): Add defines.
3596
3597         (IMAGE_REL_MIPS_JMPADDR16): Add define.
3598
3599 2006-07-27  Danny Smith  <dannysmith@users.sourceforge.net>
3600
3601         Update some IMAGE flags to PECOFF v8 (May, 2006) specs.
3602         * include/winnt.h (IMAGE_FILE_MACHINE_AM33,
3603         IMAGE_FILE_MACHINE_ARM, IMAGE_FILE_MACHINE_EBC,
3604         IMAGE_FILE_MACHINE_M32R, IMAGE_FILE_MACHINE_MIPS16,
3605         IMAGE_FILE_MACHINE_MIPSFPU, IMAGE_FILE_MACHINE_MIPSFPU16,
3606         IMAGE_FILE_MACHINE_POWERPCFP, IMAGE_FILE_MACHINE_R4000,
3607         IMAGE_FILE_MACHINE_SH3, IMAGE_FILE_MACHINE_SH3DSP,
3608         IMAGE_FILE_MACHINE_SH4, IMAGE_FILE_MACHINE_SH5,
3609         IMAGE_FILE_MACHINE_THUMB, IMAGE_FILE_MACHINE_WCEMIPSV2):
3610         Add defines.
3611
3612         (IMAGE_SUBSYSTEM_EFI_APPLICATION,
3613         IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER,
3614         IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER, IMAGE_SUBSYSTEM_EFI_ROM):
3615         Add defines.
3616
3617         (IMAGE_SYM_CLASS_CLR_TOKEN): Add define.
3618
3619         (IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE,
3620         IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY,
3621         IMAGE_DLL_CHARACTERISTICS_NX_COMPAT,
3622         IMAGE_DLLCHARACTERISTICS_NO_ISOLATION, IMAGE_DLLCHARACTERISTICS_NO_SEH,
3623         IMAGE_DLLCHARACTERISTICS_NO_BIND,
3624         IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE): Add defines.
3625
3626         (IMAGE_REL_I386_TOKEN, IMAGE_REL_I386_SECREL7): Add defines.
3627
3628         (IMAGE_REL_AMD64_ABSOLUTE, IMAGE_REL_AMD64_ADDR64,
3629         IMAGE_REL_AMD64_ADDR32, IMAGE_REL_AMD64_ADDR32NB, IMAGE_REL_AMD64_REL32,
3630         IMAGE_REL_AMD64_REL32_1, IMAGE_REL_AMD64_REL32_2,
3631         IMAGE_REL_AMD64_REL32_3, IMAGE_REL_AMD64_REL32_4,
3632         IMAGE_REL_AMD64_REL32_5, IMAGE_REL_AMD64_SECTION,
3633         IMAGE_REL_AMD64_SECREL, IMAGE_REL_AMD64_SECREL7, IMAGE_REL_AMD64_TOKEN,
3634         IMAGE_REL_AMD64_SREL32, IMAGE_REL_AMD64_PAIR, IMAGE_REL_AMD64_SSPAN32):
3635         Add defines.
3636
3637         (IMAGE_REL_IA64_ABSOLUTE, IMAGE_REL_IA64_IMM14, IMAGE_REL_IA64_IMM22,
3638         IMAGE_REL_IA64_IMM64, IMAGE_REL_IA64_DIR32, IMAGE_REL_IA64_DIR64,
3639         IMAGE_REL_IA64_PCREL21B, IMAGE_REL_IA64_PCREL21M,
3640         IMAGE_REL_IA64_PCREL21F, IMAGE_REL_IA64_GPREL22, IMAGE_REL_IA64_LTOFF22,
3641         IMAGE_REL_IA64_SECTION, IMAGE_REL_IA64_SECREL22,
3642         IMAGE_REL_IA64_SECREL64I, IMAGE_REL_IA64_SECREL32,
3643         IMAGE_REL_IA64_DIR32NB, IMAGE_REL_IA64_SREL14, IMAGE_REL_IA64_SREL22,
3644         IMAGE_REL_IA64_SREL32, IMAGE_REL_IA64_UREL32, IMAGE_REL_IA64_PCREL60X,
3645         IMAGE_REL_IA64_PCREL60B, IMAGE_REL_IA64_PCREL60F,
3646         IMAGE_REL_IA64_PCREL60I, IMAGE_REL_IA64_PCREL60M,
3647         IMAGE_REL_IA64_IMMGPREL64, IMAGE_REL_IA64_TOKEN, IMAGE_REL_IA64_GPREL32,
3648         IMAGE_REL_IA64_ADDEND): Add defines.
3649
3650         (IMAGE_SCN_GPREL): Add define.
3651
3652 2006-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
3653
3654         * include/aclui.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3655         * include/basetyps.h:  Likewise.
3656         (_COM_interface): New define.
3657         (interface): Define to _COM_interface, conditional on !__OBJC__.
3658         Replace 'interface' with '_COM_interface', throughout.
3659         * include/comcat.h: Replace 'interface' with '_COM_interface', throughout.
3660         * include/commdlg.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3661         * include/docobj.h: Replace 'interface' with '_COM_interface', throughout.
3662         * include/mshtml.h: Likewise.
3663         * include/oaidl.h: Likewise.
3664         * include/objfwd.h: Likewise.
3665         * include/objidl.h: Likewise.
3666         * include/ocidl.h: Likwise.
3667         * include/olectl.h: Likewise.
3668         * include/oleidl.h: Likewise.
3669         * include/shlobj.h: Likewise.
3670         * include/shlwapi.h: Replace __OBJC__ guard with _OBJC_NO_COM.
3671         * include/vfw.h: Likewise.
3672         * include/windows.h. Likewise. Add comment.
3673         * include/directx/d3d9.h: Replace 'interface' with '_COM_interface',
3674         throughout.
3675
3676         * lib/test.c: Replace __OBJC__ guard with _OBJC_NO_COM.
3677         Add test for conflict with '@interface'
3678
3679 2006-07-22  ipsoner  <ipsoner@users.sourceforge.net>
3680
3681         * include/wincrypt.h (szOID_RSA, szOID_PKCS, szOID_RSA_HASH,
3682         szOID_RSA_ENCRYPT, szOID_PKCS_1, szOID_PKCS_2, szOID_PKCS_3,
3683         szOID_PKCS_4, szOID_PKCS_5, szOID_PKCS_6, szOID_PKCS_7,
3684         szOID_PKCS_8, szOID_PKCS_9, szOID_PKCS_10, szOID_PKCS_12,
3685         szOID_RSA_MD2, szOID_RSA_MD4, szOID_RSA_MD5, szOID_RSA_RSA,
3686         szOID_RSA_MD2RSA, szOID_RSA_MD4RSA, szOID_RSA_MD5RSA,
3687         szOID_RSA_SHA1RSA, szOID_RSA_SETOAEP_RSA, szOID_RSA_DH,
3688         szOID_RSA_data, szOID_RSA_signedData, szOID_RSA_envelopedData,
3689         szOID_RSA_signEnvData, szOID_RSA_digestedData, szOID_RSA_hashedData,
3690         szOID_RSA_encryptedData, szOID_RSA_emailAddr, szOID_RSA_unstructName,
3691         szOID_RSA_contentType, szOID_RSA_messageDigest, szOID_RSA_signingTime,
3692         szOID_RSA_counterSign, szOID_RSA_challengePwd, szOID_RSA_unstructAddr,
3693         szOID_RSA_extCertAttrs, szOID_RSA_SMIMECapabilities,
3694         szOID_RSA_preferSignedData, szOID_RSA_RC2CBC, szOID_RSA_RC4,
3695         szOID_RSA_DES_EDE3_CBC, szOID_RSA_RC5_CBCPad, szOID_ANSI_x942,
3696         szOID_ANSI_x942_DH, szOID_X957, szOID_X957_DSA, szOID_DATA STRUCTURE,
3697         szOID_DS, szOID_DSALG, szOID_DSALG_CRPT, szOID_DSALG_HASH,
3698         szOID_DSALG_SIGN, szOID_DSALG_RSA, szOID_OIW, szOID_OIWSEC,
3699         szOID_OIWSEC_md4RSA, szOID_OIWSEC_md5RSA, szOID_OIWSEC_md4RSA2,
3700         szOID_OIWSEC_desECB, szOID_OIWSEC_desCBC, szOID_OIWSEC_desOFB,
3701         szOID_OIWSEC_desCFB, szOID_OIWSEC_desMAC, szOID_OIWSEC_rsaSign,
3702         szOID_OIWSEC_dsa, szOID_OIWSEC_shaDSA, szOID_OIWSEC_mdc2RSA,
3703         szOID_OIWSEC_shaRSA, szOID_OIWSEC_dhCommMod, szOID_OIWSEC_desEDE,
3704         szOID_OIWSEC_sha, szOID_OIWSEC_mdc2, szOID_OIWSEC_dsaComm,
3705         szOID_OIWSEC_dsaCommSHA, szOID_OIWSEC_rsaXchg, szOID_OIWSEC_keyHashSeal,
3706         szOID_OIWSEC_md2RSASign, szOID_OIWSEC_md5RSASign, szOID_OIWSEC_sha1,
3707         szOID_OIWSEC_dsaSHA1, szOID_OIWSEC_dsaCommSHA1, szOID_OIWSEC_sha1RSASign,
3708         szOID_OIWDIR, szOID_OIWDIR_CRPT, szOID_OIWDIR_HASH, szOID_OIWDIR_SIGN,
3709         szOID_OIWDIR_md2, szOID_OIWDIR_md2RSA, szOID_INFOSEC,
3710         szOID_INFOSEC_sdnsSignature, szOID_INFOSEC_mosaicSignature,
3711         szOID_INFOSEC_sdnsConfidentiality, szOID_INFOSEC_mosaicConfidentiality,
3712         szOID_INFOSEC_sdnsIntegrity, szOID_INFOSEC_mosaicIntegrity,
3713         szOID_INFOSEC_sdnsTokenProtection, szOID_INFOSEC_mosaicTokenProtection,
3714         szOID_INFOSEC_sdnsKeyManagement, szOID_INFOSEC_mosaicKeyManagement,
3715         szOID_INFOSEC_sdnsKMandSig, szOID_INFOSEC_mosaicKMandSig,
3716         szOID_INFOSEC_SuiteASignature, szOID_INFOSEC_SuiteAConfidentiality,
3717         szOID_INFOSEC_SuiteAIntegrity, szOID_INFOSEC_SuiteATokenProtection,
3718         szOID_INFOSEC_SuiteAKeyManagement, szOID_INFOSEC_SuiteAKMandSig,
3719         szOID_INFOSEC_mosaicUpdatedSig, szOID_INFOSEC_mosaicKMandUpdSig,
3720         szOID_INFOSEC_mosaicUpdatedInteg, szOID_PKIX_NO_SIGNATURE,
3721         szOID_COMMON_NAME, szOID_COUNTRY_NAME, szOID_DEVICE_SERIAL_NUMBER,
3722         szOID_DOMAIN_COMPONENT, szOID_RSA_emailAddr, szOID_GIVEN_NAME,
3723         szOID_INITIALS, szOID_LOCALITY_NAME, szOID_ORGANIZATION_NAME,
3724         szOID_ORGANIZATIONAL_UNIT_NAME, szOID_STATE_OR_PROVINCE_NAME,
3725         szOID_STREET_ADDRESS, szOID_SUR_NAME, szOID_TITLE, szOID_RSA_unstructAddr,
3726         szOID_RSA_unstructName, szOID_BASIC_CONSTRAINTS2,
3727         CERT_BASIC_CONSTRAINTS2_INFO, CRYPT_ENCODE_PARA,CertDuplicateStore,
3728         CertEnumCertificatesInStore, CertDuplicateCertificateContext,
3729         CertGetNameStringA, CertGetNameStringW, CertGetNameString, PFXIsPFXBlob,
3730         CertFindExtension, CryptDecodeObject, CertAddCertificateContextToStore,
3731         CertCompareCertificate, PFXVerifyPassword, PFXImportCertStore,
3732         CertDeleteCertificateFromStore): Define.
3733         * lib/crypt32.def (CertDuplicateStore, CertEnumCertificatesInStore,
3734         CertDuplicateCertificateContext, CertGetNameStringA, CertGetNameStringW,
3735         CertGetNameString, PFXIsPFXBlob, CertFindExtension, CryptDecodeObject,
3736         CertAddCertificateContextToStore, CertCompareCertificate,
3737         PFXVerifyPassword, PFXImportCertStore, CertDeleteCertificateFromStore):
3738         Define.
3739
3740 2006-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3741
3742         * lib/uuid.c: Remove.
3743
3744 2006-07-20  Elias Naur  <elias_naur@users.sourceforge.net>
3745
3746         * include/devguid.h: Add new file with missing GUID_DEVCLASS_*
3747         declarations. They were extracted from the registry with a script.
3748         * lib/devguid.c: Add new file with the implementation of the
3749         missing GUIDs.
3750         * lib/Makefile.in: Add devguid.c to UUID_SOURCES and UUID_OBJS.
3751
3752 2006-07-19  Elias Naur  <elias_naur@users.sourceforge.net>
3753
3754         * include/winuser.h (WM_INPUT): Add missing Raw Input
3755         notification define.
3756         (RID_DEVICE_INFO_MOUSE, RID_DEVICE_INFO_KEYBOARD,
3757         RID_DEVICE_INFO_HID, RID_DEVICE_INFO): Define Raw Input structs
3758
3759 2006-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
3760
3761         [mingw-Bugs-1525021]
3762         * iptypes.h (IP_ADAPTER_ANYCAST_ADDRESS): Fix NONAMELESSUNION warnings.
3763         (IP_ADAPTER_MULTICAST_ADDRESS): Likewise.
3764         (IP_ADAPTER_UNICAST_ADDRESS): Likewise.
3765         (IP_ADAPTER_DNS_SERVER_ADDRESS): Likewise.
3766         (IP_ADAPTER_ADAPTER_PREFIX): Likewise.
3767         (IP_ADAPTER_ADDRESSES): Likewise.
3768
3769 2006-06-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3770
3771         * lib/uuid.c (CLSID_FileProtocol, CLSID_FtpProtocol, CLSID_GopherProtocol,
3772         CLSID_HttpProtocol, CLSID_HttpSProtocol, CLSID_MkProtocol,
3773         CLSID_PSUrlMonProxy, CLSID_StdURLMoniker): Remove.  Moved to
3774         extras-uuid.c.
3775         * lib/extras-uuid.c (CLSID_FileProtocol, CLSID_FtpProtocol, CLSID_GopherProtocol,
3776         CLSID_HttpProtocol, CLSID_HttpSProtocol, CLSID_MkProtocol,
3777         CLSID_PSUrlMonProxy, CLSID_StdURLMoniker): Added.
3778         * lib/hlguids-uuid.c: State source of CLSIDs.
3779
3780 2006-06-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3781
3782         * lib/Makefile.in: Added extras-uuid as an object and source.
3783         * lib/uuid.c (IID_IClientSiteHandler, IID_IContinue, IID_IHttpNegotiate,
3784         IID_IPersistMoniker, IID_IServerHandler, IID_ITargetEmbedding,
3785         IID_ITargetFrame, IID_ITypeComp, IID_IUrlHistoryStg, IID_IWinInetHttpInfo,
3786         IID_IWinInetInfo, IID_IEnumSTATPROPSETSTG, IID_IEnumSTATPROPSTG,
3787         IID_IEnumSTATURL): Remove.  Moved to extras-uuid.c.
3788         * lib/extras-uuid.c: New file.
3789         Thank you to Julien Lecomte (julienlecomte at users dot sourceforge dot
3790         net).
3791
3792 2006-06-12  Danny Smith  <dannysmith@users.sourceforge.net>
3793
3794         [mingw-Bugs-1424461]
3795         *include/imagehlp.h: Comment out IN, OUT and OPTIONAL,
3796         throughout.
3797         *include/rpcdce.h: Don't define IN, OUT or OPTIONAL if
3798         _NO_W32_PSEUDO_MODIFIERS.
3799         *include/rpcnsi.h: Comment out IN, OUT and OPTIONAL,
3800         throughout.
3801         *include/rpcnsip.h: Likewise.
3802         *include/windef.h: Don't define IN, OUT or OPTIONAL
3803         if _NO_W32_PSEUDO_MODIFIERS.
3804         *include/ddk/batclass.h: Comment out IN, OUT and OPTIONAL,
3805         throughout.
3806         *include/ddk/cfgmgr32.h: Likewise.
3807         *include/ddk/ddkmapi.h: Likewise.
3808         *include/ddk/hidclass.h: Likewise.
3809         *include/ddk/hidpi.h: Likewise.
3810         *include/ddk/kbdmou.h: Likewise.
3811         *include/ddk/mcd.h: Likewise.
3812         *include/ddk/miniport.h: Likewise.
3813         *include/ddk/minitape.h: Likewise.
3814         *include/ddk/ndis.h: Likewise.
3815         *include/ddk/ndistapi.h: Likewise.
3816         *include/ddk/ndiswan.h: Likewise.
3817         *include/ddk/ntapi.h: Likewise.
3818         *include/ddk/ntdd8042.h: Likewise.
3819         *include/ddk/ntddpcm.h: Likewise.
3820         *include/ddk/ntifs.h: Likewise.
3821         *include/ddk/ntpoapi.h: Likewise.
3822         *include/ddk/parallel.h: Likewise.
3823         *include/ddk/pfhook.h: Likewise.
3824         *include/ddk/scsiwmi.h: Likewise.
3825         *include/ddk/smbus.h: Likewise.
3826         *include/ddk/srb.h: Likewise.
3827         *include/ddk/storport.h: Likewise.
3828         *include/ddk/tdikrnl.h: Likewise.
3829         *include/ddk/upssvc.h: Likewise.
3830         *include/ddk/usbcamdi.h: Likewise.
3831         *include/ddk/usbscan.h: Likewise.
3832         *include/ddk/video.h: Likewise.
3833         *include/ddk/videoagp.h: Likewise.
3834         *include/ddk/win2k.h: Likewise.
3835         *include/ddk/winddi.h: Likewise.
3836         *include/ddk/winddk.h: Don't define IN, OUT or OPTIONAL
3837         if _NO_W32_PSEUDO_MODIFIERS.
3838         Comment out IN, OUT and OPTIONAL, throughout.
3839         *include/ddk/winnt4.h: Comment out IN, OUT and OPTIONAL,
3840         throughout.
3841         *include/ddk/ws2san.h: Likewise.
3842
3843 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3844
3845         * lib/Makefile.in:  Added hlguids-uuid as source and object.
3846
3847 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3848
3849         * lib/uuid.c (CLSID_StaticDib, CLSID_StaticMetafile, CLSID_StdHlink,
3850         CLSID_StdHlinkBrowseContext): Remove.  Moved to relevant files.
3851         * lib/cguid-uuid.c (CLSID_StaticDib, CLSID_StaticMetafile): Added.
3852         * lib/hlguids-uuid.c: New file.
3853         Thank you to Julien Lecomte (julienlecomte at users dot sourceforge dot
3854         net).
3855
3856 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3857
3858         * lib/Makefile.in: Added urlmon-uuid and hlink-uuid as sources and
3859         objects.
3860         * lib/uuid.c (IID_IAuthenticate, IID_IBindHost, IID_IBindProtocol,
3861         IID_IBindStatusCallback, IID_IBindStatusCallbackMsg, IID_IBinding,
3862         IID_IHlink, IID_IHlinkBrowseContext, IID_IHlinkFrame, IID_IHlinkSite,
3863         IID_IHlinkTarget): Remove.  Moved to new files.
3864         * lib/urlmon-uuid.c: New file.
3865         * lib/hlink-uuid.c: New file.
3866
3867 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3868
3869         * lib/Makefile.in: Added ativscp-uuid as source and object.
3870         * lib/uuid.c (IID_IActiveScript, IID_IActiveScriptError,
3871         IID_IActiveScriptParse, IID_IActiveScriptSite,
3872         IID_IActiveScriptSiteWindow): Remove.  Moved to ativscp-uuid.c.
3873         * lib/ativscp-uuid.c: New file.
3874
3875 2006-06-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3876
3877         * lib/uuid.c (IID_IClientSecurity, IID_IMallocSpy, IID_IServerSecurity):
3878         Remove.  Moved to objidl-uuid.c
3879         * lib/objidl-uuid.c (IID_IClientSecurity, IID_IMallocSpy,
3880         IID_IServerSecurity): Defined.
3881
3882 2006-06-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3883
3884         * lib/Makefile.in: Add cguid-uuid and olectlid-uuid as sources and
3885         objects.
3886         * lib/uuid.c (CLSID_CColorPropPage, CLSID_CFontPropPage,
3887         CLSID_CPicturePropPage, CLSID_Picture_Dib, CLSID_Picture_Metafile,
3888         CLSID_StdFont, CLSID_StdPicture, GUID_NULL, IID_ICreateTypeInfo,
3889         IID_ICreateTypeInfo2, IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_IDebug,
3890         IID_IDebugStream, IID_IDispatch, IID_IEnumFORMATETC,IID_IEnumMoniker,
3891         IID_IEnumOLEVERB, IID_IEnumSTATDATA, IID_IEnumSTATSTG, IID_IEnumString,
3892         IID_IEnumUnknown, IID_IEnumVARIANT, IID_IOleLink, IID_IPSFactory,
3893         IID_IRpcChannel, IID_IRpcProxy, IID_IRpcStub, IID_ITypeInfo,
3894         IID_ITypeInfo2, IID_ITypeLib, IID_ITypeLib2): Remove.  Moved to relevant
3895         files.
3896         * lib/oaidl-uuid.c (IID_ICreateTypeInfo, IID_ICreateTypeInfo2,
3897         IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_ITypeInfo, IID_ITypeInfo2,
3898         IID_ITypeLib, IID_ITypeLib2, IID_IEnumVARIANT): Define.
3899         * lib/cguid-uuid.c: New file.
3900         * lib/olectlid-uuid.c: New file.
3901
3902 2006-06-08  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3903
3904         * lib/Makefile.in: Add objsafe-uuid oaidl-uuid docobj-uuid comcat-uuid
3905         exdisp-uuid mlang-uuid objidl-uuid as sources and objects.
3906         * lib/uuid.c (CATID_Control, CATID_DocObject, CATID_Insertable,
3907         CATID_PersistsToPropertyBag, CATID_PersistsToStorage, CATID_PersistsToStream,
3908         CATID_PersistsToStreamInit, CATID_Printable, CATID_Programmable,
3909         CLSID_CMultiLanguage, CLSID_StdComponentCategoriesMgr, CLSID_WebBrowser,
3910         DIID_DWebBrowserEvents, DIID_DWebBrowserEvents2, IID_IAdviseSink,
3911         IID_IAdviseSink2, IID_IBindCtx, IID_ICatInformation, IID_ICatRegister,
3912         IID_IClassActivator, IID_IContinueCallback, IID_ICreateErrorInfo,
3913         IID_IDataAdviseHolder, IID_IDataObject, IID_IEnumCATEGORYINFO,
3914         IID_IEnumGUID, IID_IEnumOleDocumentViews, IID_IErrorInfo,
3915         IID_IExternalConnection, IID_IFillLockBytes, IID_ILockBytes, IID_IMalloc,
3916         IID_IMarshal, IID_IMessageFilter, IID_IMoniker, IID_IObjectSafety,
3917         IID_IOleCommandTarget, IID_IOleDocument, IID_IOleDocumentSite,
3918         IID_IOleDocumentView, IID_IPSFactoryBuffer, IID_IPersist,
3919         IID_IPersistFile, IID_IPersistStorage, IID_IPersistStream, IID_IPrint,
3920         IID_IProgressNotify, IID_IPropertySetStorage, IID_IPropertyStorage,
3921         IID_IROTData, IID_IRootStorage, IID_IRpcChannelBuffer,
3922         IID_IRpcProxyBuffer, IID_IRpcStubBuffer, IID_IRunnableObject,
3923         IID_IRunningObjectTable, IID_ISequentialStream, IID_IStdMarshalInfo,
3924         IID_IStorage, IID_IStream, IID_ISupportErrorInfo, IID_IWebBrowser,
3925         IID_IWebBrowser2, IID_IWebBrowserApp): Remove. Moved to new files.
3926         * lib/comcat-uuid.c: New file.
3927         * lib/docobj-uuid.c: New File.
3928         * lib/exdisp-uuid.c: New file.
3929         * lib/mlang-uuid.c: New file.
3930         * lib/oaidl-uuid.c: New file.
3931         * lib/objidl-uuid.c: New file.
3932         * lib/objsafe-uuid.c: New file.
3933
3934 2006-06-07  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3935
3936         * lib/Makefile.in: Add oleacc-uuid oleidl-uuid ocidl-uuid as sources and
3937         objects.
3938         * lib/uuid.c (IID_IOleCache, IID_IOleCache2, IID_IOleCacheControl, IID_IViewObject,
3939         IID_IViewObject2, IID_IDropSource, IID_IDropTarget, IID_IOleAdviseHolder,
3940         IID_IOleInPlaceUIWindow, IID_IOleInPlaceObject, IID_IOleInPlaceActiveObject,
3941         IID_IOleInPlaceFrame, IID_IOleInPlaceSite, IID_IOleContainer, IID_IOleItemContainer,
3942         IID_IOleClientSite, IID_IOleObject, IID_IOleWindow, IID_IParseDisplayName,
3943         IID_IAccessible, LIBID_Accessibility, IID_IQuickActivate, IID_IOleUndoManager,
3944         IID_IOleParentUndoUnit, IID_IOleUndoUnit, IID_IEnumOleUndoUnits, IID_IPointerInactive,
3945         IID_IAdviseSinkEx, IID_IOleInPlaceSiteEx, IID_IOleControl, IID_IOleControlSite,
3946         IID_IPersistPropertyBag, IID_IPersistPropertyBag2, IID_IPersistStreamInit,
3947         IID_IPersistMemory, IID_IPropertyBag, IID_IPropertyBag2, IID_IPropertyNotifySink,
3948         IID_IPropertyPage, IID_IPropertyPage2, IID_IPropertyPageSite, IID_IFont, IID_IFontDisp,
3949         IID_IPicture, IID_IPictureDisp, IID_IProvideClassInfo, IID_IProvideClassInfo2,
3950         IID_IEnumConnectionPoints, IID_IEnumConnections, IID_IConnectionPoint,
3951         IID_IConnectionPointContainer, IID_IClassFactory2, IID_IErrorLog,
3952         IID_IObjectWithSite, IID_IPerPropertyBrowsing, IID_ISimpleFrameSite,
3953         IID_ISpecifyPropertyPages): Remove. Moved to new files.
3954         * lib/oleidl-uuid.c: New file.
3955         * lib/oleacc-uuid.c: New file.
3956         * lib/ocidl-uuid.c: New file.
3957
3958 2006-06-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3959
3960         * lib/Makefile.in: Add unknwn-uuid and servprov-uuid as sources and
3961         objects.
3962         * lib/uuid.c (IID_IUnknown, IID_IClassFactory, IID_IServiceProvider):
3963         Remove.  Moved to unknwn-uuid and servprov-uuid.
3964         * lib/unknwn-uuid.c: New file.
3965         * lib/servprov-uuid.c: New file.
3966
3967 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3968
3969         * include/strmif.h (VMRDeinterlaceTech): Correct typedef for DeinterlaceTech_*
3970         enum.
3971
3972 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3973
3974         * include/strmif.h (enum tagAnalogVideoStandard): Add missing ','.
3975
3976 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3977
3978         * include/winuser.h (DM_BITSPERPEL, DM_PELSWIDTH, DM_PELSHEIGHT,
3979         DM_DISPLAYFLAGS, DM_DISPLAYFREQUENCY): Remove.  Duplicates of
3980         wingdi.h defines.
3981
3982 2006-06-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3983
3984         * include/winuser.h ((SPI_GETMOUSETRAILS,SPI_SETMOUSETRAILS): Remove
3985         duplicate defines.
3986
3987         * include/winnt.h (SUBLANG_ARABIC_SAUDI_ARABIA): Revert accidental
3988         removal.
3989         (SUBLANG_MARATHI_INDIA): Remove duplicate define.
3990
3991 2006-05-24  Christopher Faylor  <cgf@timesys.com>
3992
3993         * configure.in: Update to newer autoconf.
3994         (thanks to Steve Ellcey)
3995         * configure: Regenerate.
3996         * aclocal.m4: New file.
3997
3998 2006-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
3999
4000         * lib/uuid.c (IID_IRpcProxyBuffer34): Remove definition.
4001
4002 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4003
4004         * include/rtutils.h (TraceDumpA,TraceDumpW,TracePutsA,TracePutsW)
4005         (TraceRegisterA,TraceRegisterW,TraceVprintfA,TraceVprintfW): Define
4006         as macros.
4007         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
4008
4009 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4010
4011         * include/mprapi.h (MprAdminMIBBufferFree,MprAdminMIBEntryCreate)
4012         (MprAdminMIBEntryDelete,MprAdminMIBEntryGet,MprAdminMIBEntryGetFirst)
4013         (MprAdminMIBEntryGetNext,MprAdminMIBEntrySet,MprAdminMIBGetTrapInfo)
4014         (MprAdminMIBServerConnect,MprAdminMIBServerDisconnect)
4015         (MprAdminMIBSetTrapInfo): Declare functions.
4016         Note: MprAdminMIBSetTrapInfo is missing from mprapi.def.
4017         (MIB_SERVER_HANDLE): New typedef.
4018         (MprConfigTransportSetInfo): Declare function.
4019         * lib/mprapi.def (MprSetupIpInIpInterfaceFriendlyNameEnum)
4020         (MprSetupIpInIpInterfaceFriendlyNameFree): Fix size.
4021
4022 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4023
4024         * lib/rtutils.def: New file. Generated on Windows XP.
4025         (TracePrintf{AW},TracePrintfEx{AW}): Left out for now.
4026         * include/rtutils.h: New file.
4027         (TraceDump{AW},TracePuts{AW},TraceRegister{AW},TraceVprintf{AW}):
4028         Commented out, they're missing from rtutils.def.
4029
4030 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4031
4032         * include/mprapi.h (MprInfoBlockAdd,MprInfoBlockFind)
4033         (MprInfoBlockQuerySize,MprInfoBlockRemove,MprInfoBlockSet)
4034         (MprInfoCreate,MprInfoDelete,MprInfoDuplicate)
4035         (MprInfoRemoveAll): Declare functions.
4036
4037 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4038
4039         * include/mprapi.h (MprConfigBufferFree,MprConfigGetFriendlyName)
4040         (MprConfigGetGuidName,MprConfigInterfaceCreate)
4041         (MprConfigInterfaceDelete,MprConfigInterfaceEnum)
4042         (MprConfigInterfaceGetHandle,MprConfigInterfaceGetInfo)
4043         (MprConfigInterfaceSetInfo,MprConfigInterfaceTransportAdd)
4044         (MprConfigInterfaceTransportEnum,MprConfigInterfaceTransportGetHandle)
4045         (MprConfigInterfaceTransportGetInfo,MprConfigInterfaceTransportRemove)
4046         (MprConfigInterfaceTransportSetInfo,MprConfigServerBackup)
4047         (MprConfigServerConnect,MprConfigServerDisconnect)
4048         (MprConfigServerGetInfo,MprConfigServerInstall)
4049         (MprConfigServerRestore,MprConfigTransportCreate)
4050         (MprConfigTransportDelete,MprConfigTransportEnum)
4051         (MprConfigTransportGetHandle,MprConfigTransportGetInfo)
4052         (MprConfigTransportSetInfo): Declare functions.
4053
4054 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4055
4056         * include/mprapi.h (MprAdminBufferFree)
4057         (MprAdminDeregisterConnectionNotification,MprAdminGetErrorString)
4058         (MprAdminInterfaceConnect,MprAdminInterfaceCreate)
4059         (MprAdminInterfaceDelete,MprAdminInterfaceDeviceGetInfo)
4060         (MprAdminInterfaceDeviceSetInfo,MprAdminInterfaceDisconnect)
4061         (MprAdminInterfaceEnum,MprAdminInterfaceGetCredentials)
4062         (MprAdminInterfaceGetCredentialsEx,MprAdminInterfaceGetHandle)
4063         (MprAdminInterfaceGetInfo,MprAdminInterfaceQueryUpdateResult)
4064         (MprAdminInterfaceSetCredentials,MprAdminInterfaceSetCredentialsEx)
4065         (MprAdminInterfaceSetInfo,MprAdminInterfaceTransportAdd)
4066         (MprAdminInterfaceTransportGetInfo,MprAdminInterfaceTransportRemove)
4067         (MprAdminInterfaceTransportSetInfo)
4068         (MprAdminInterfaceUpdatePhonebookInfo,MprAdminInterfaceUpdateRoutes)
4069         (MprAdminIsServiceRunning,MprAdminRegisterConnectionNotification)
4070         (MprAdminServerConnect,MprAdminServerDisconnect)
4071         (MprAdminServerGetCredentials,MprAdminServerGetInfo)
4072         (MprAdminServerSetCredentials,MprAdminTransportCreate)
4073         (MprAdminTransportGetInfo,MprAdminTransportSetInfo): Declare functions.
4074
4075 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4076
4077         * include/ipxtfflt.h: New file.
4078
4079 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4080
4081         * include/mprapi.h: Fix header guard. Cleanup.
4082         (MprAdminAcceptNewConnection,MprAdminAcceptNewConnection2)
4083         (MprAdminAcceptNewLink,MprAdminAcceptReauthentication)
4084         (MprAdminConnectionHangupNotification)
4085         (MprAdminConnectionHangupNotification2)
4086         (MprAdminGetIpAddressForUser,MprAdminInitializeDll)
4087         (MprAdminTerminateDll,MprAdminLinkHangupNotification)
4088         (MprAdminReleaseIpAddress): Declare functions.
4089         * lib/mprapi.def: Regenerate on Windows XP.
4090
4091 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4092
4093         * include/ipifcons.h: Cleanup.
4094         * include/ipxconst.h: Fix header guard.
4095         * include/ipxrtdef.h: include <ipxconst.h>.
4096
4097 2006-05-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4098
4099         * include/ipxrtdef.h: Cleanup.
4100         (IPX_INTERFACE_INFO_TYPE,IPX_STATIC_ROUTE_INFO_TYPE)
4101         (IPX_STATIC_SERVICE_INFO_TYPE,IPX_SERVICE_FILTER_INFO_TYPE)
4102         (IPX_ROUTE_FILTER_INFO_TYPE,IPX_IN_TRAFFIC_FILTER_INFO_TYPE)
4103         (IPX_ADAPTER_INFO_TYPE,IPXWAN_INTERFACE_INFO_TYPE,IPX_GLOBAL_INFO_TYPE)
4104         (IPX_STATIC_NETBIOS_NAME_INFO_TYPE)
4105         (IPX_IN_TRAFFIC_FILTER_GLOBAL_INFO_TYPE)
4106         (IPX_OUT_TRAFFIC_FILTER_INFO_TYPE)
4107         (IPX_OUT_TRAFFIC_FILTER_GLOBAL_INFO_TYPE): Define.
4108         * include/routprot.h: Cleanup.
4109         (PROTO_IP_OTHER,PROTO_IP_LOCAL,PROTO_IP_NETMGMT,PROTO_IP_ICMP)
4110         (PROTO_IP_EGP,PROTO_IP_GGP,PROTO_IP_HELLO,PROTO_IP_RIP,PROTO_IP_IS_IS)
4111         (PROTO_IP_ES_IS,PROTO_IP_CISCO,PROTO_IP_BBN,PROTO_IP_OSPF,PROTO_IP_BGP)
4112         (PROTO_IP_BOOTP,PROTO_IP_NT_AUTOSTATIC,PROTO_IP_NT_STATIC)
4113         (PROTO_IP_NT_STATIC_NON_DOD,IPRTRMGR_PID,IPX_PROTOCOL_BASE)
4114         (IPX_PROTOCOL_RIP,IPX_PROTOCOL_SAP,IPX_PROTOCOL_NLSP): Define.
4115         * include/fltdefs.h: New file.
4116         * include/ipinfoid.h: New file.
4117
4118 2006-05-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4119
4120         * include/strmif.h (IAMAnalogVideoDecoder,IAMAudioInputMixer)
4121         (IAMAudioRendererStats,IAMBufferNegotiation,IAMCameraControl)
4122         (IAMCertifiedOutputProtection): Add interfaces.
4123         * include/adsprop.h: New file.
4124         * include/cmnquery.h: New file.
4125         * include/dsadmin.h: New file.
4126         * include/dsclient.h: New file.
4127         * include/dsgetdc.h: New file.
4128         * include/dsquery.h: New file.
4129         * include/dsrole.h: New file.
4130         * include/ntdsapi.h: New file.
4131         * include/ntdsbcli.h: New file.
4132         * include/objsel.h: New file.
4133
4134 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4135
4136         * include/qedit.h (DEXTER_PARAM,DEXTER_VALUE,SCompFmt0): Add structures.
4137         (DEXTERF_TRACK_SEARCH_FLAGS,TIMELINE_MAJOR_TYPE): Add enums.
4138         (CONNECTF_DYNAMIC_NONE,CONNECTF_DYNAMIC_SOURCES)
4139         (CONNECTF_DYNAMIC_EFFECTS,SFN_VALIDATEF_CHECK,SFN_VALIDATEF_POPUP)
4140         (SFN_VALIDATEF_TELLME,SFN_VALIDATEF_REPLACE,SFN_VALIDATEF_USELOCAL)
4141         (SFN_VALIDATEF_NOFIND,SFN_VALIDATEF_IGNOREMUTED,RESIZEF_STRETCH)
4142         (RESIZEF_CROP,RESIZEF_PRESERVEASPECTRATIO)
4143         (RESIZEF_PRESERVEASPECTRATIO_NOLETTERBOX): Define.
4144
4145 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4146
4147         * include/qedit.h: New file.
4148         * include/errors.h: Cleanup.
4149
4150 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4151
4152         * include/amvideo.h (BIT_MASKS_MATCH): Don't use memcmp to
4153         avoid dependency on <string.h>.
4154         There's no Win32 equivalent for memcmp:
4155         http://support.microsoft.com/default.aspx?scid=kb;EN-US;q99456
4156
4157 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4158
4159         * include/amvideo.h (RESET_MASKS,RESET_PALETTE): Use ZeroMemory
4160         instead of memset to avoid dependency on <string.h>.
4161         * include/dshow.h (AM_ASPECT_RATIO_MODE,AM_WST_DRAWBGMODE,AM_WST_LEVEL)
4162         (AMExtendedSeekingCapabilities,AM_WST_SERVICE,AM_WST_STATE)
4163         (AM_WST_STYLE): Add enums.
4164         (AM_WST_PAGE,AMVABeginFrameInfo,AMVACompBufferInfo,AMVAEndFrameInfo,
4165         AMVAInternalMemInfo,AMVAUncompBufferInfo,AMVAUncompDataInfo): New
4166         structures.
4167         * include/errors.h (VFW_E_DVD_CMD_CANCELLED)
4168         (VFW_E_DVD_STATE_WRONG_VERSION,VFW_E_DVD_STATE_CORRUPT)
4169         (VFW_E_DVD_STATE_WRONG_DISC,VFW_E_DVD_INCOMPATIBLE_REGION)
4170         (VFW_E_DVD_NO_ATTRIBUTES,VFW_E_DVD_NO_GOUP_PGC)
4171         (VFW_E_DVD_LOW_PARENTAL_LEVEL,VFW_E_DVD_NOT_IN_KARAOKE_MODE)
4172         (VFW_E_FRAME_STEP_UNSUPPORTED,VFW_E_DVD_STREAM_DISABLED)
4173         (VFW_E_DVD_TITLE_UNKNOWN,VFW_E_DVD_INVALID_DISC)
4174         (VFW_E_DVD_NO_RESUME_INFORMATION)
4175         (VFW_E_PIN_ALREADY_BLOCKED_ON_THIS_THREAD,VFW_E_PIN_ALREADY_BLOCKED)
4176         (VFW_E_CERTIFICATION_FAILURE,VFW_E_VMR_NOT_IN_MIXER_MODE)
4177         (VFW_E_VMR_NO_AP_SUPPLIED,VFW_E_VMR_NO_DEINTERLACE_HW)
4178         (VFW_E_VMR_NO_PROCAMP_HW,VFW_E_DVD_VMR9_INCOMPATIBLEDEC)
4179         (VFW_E_NO_COPP_HW,VFW_E_BAD_KEY): Define.
4180         * include/evcode.h (AM_WMT_EVENT_DATA): New structure.
4181         * include/mmsystem.h (WAVE_FORMAT_EXTENSIBLE): Define.
4182         * include/edevdefs.h (ED_FORMAT_SMPTE_30,ED_FORMAT_SMPTE_30DROP)
4183         (ED_FORMAT_SMPTE_25,ED_FORMAT_SMPTE_24): Move from here...
4184         * include/strmif.h: ... to here. New file.
4185         * include/aviriff.h: New file.
4186         * include/bdatypes.h: New file.
4187         * include/control.h: New file.
4188         * include/dvdmedia.h: New file.
4189         * include/il21dec.h: New file.
4190         * include/ks.h: New file.
4191         * include/ksmedia.h: New file.
4192         * include/mmreg.h: New file.
4193         * include/mpegtype.h: New file.
4194         * include/vidcap.h: New file.
4195         * include/vmr9.h: New file.
4196         * include/vptype.h: New file.
4197         * include/xprtdefs.h: New file.
4198
4199 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4200
4201         * include/winnls.h [WINVER >= 0x0500] (LOCALE_IDEFAULTEBCDICCODEPAGE):
4202         Documented as defined on Windows 2000 or later.
4203         [WINVER >= 0x0600] (LOCALE_SDURATION,LOCALE_SIETFLANGUAGE)
4204         (LOCALE_SISO3166CTRYNAME2,LOCALE_SISO639LANGNAME2)
4205         (LOCALE_SKEYBOARDSTOINSTALL,LOCALE_SNAME,LOCALE_SNAN)
4206         (LOCALE_SNEGINFINITY,LOCALE_SPOSINFINITY,LOCALE_SSCRIPTS): Documented
4207         but values unknown, Windows Vista or later.
4208         (CAL_UMALQURA): Cleanup.
4209         (CAL_SSHORTESTDAYNAME_1,CAL_SSHORTESTDAYNAME_2,CAL_SSHORTESTDAYNAME_3)
4210         (CAL_SSHORTESTDAYNAME_4,CAL_SSHORTESTDAYNAME_5,CAL_SSHORTESTDAYNAME_6)
4211         (CAL_SSHORTESTDAYNAME7): Cleanup.
4212         [WINVER >= 0x0410] (CAL_SYEARMONTH,CAL_ITWODIGITYEARMAX)
4213         (CAL_NOUSEROVERRIDE,CAL_RETURN_NUMBER,CAL_USE_CP_ACP): Cleanup.
4214
4215 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4216
4217         * include/wingdi.h [WINVER >= 0x0500] (DC_PERSONALITY,DC_PRINTRATE)
4218         (DC_PRINTRATEUNIT,DC_PRINTERMEM,DC_MEDIAREADY,DC_STAPLE)
4219         (DC_PRINTRATEPPM,DC_COLORDEVICE,DC_NUP,DC_MEDIATYPENAMES)
4220         (DC_MEDIATYPES,DMPAPER_DBL_JAPANESE_POSTCARD,DMPAPER_A6)
4221         (DMPAPER_JENV_KAKU2,DMPAPER_JENV_KAKU3,DMPAPER_JENV_CHOU3)
4222         (DMPAPER_JENV_CHOU4,DMPAPER_LETTER_ROTATED)
4223         (DMPAPER_A3_ROTATED,DMPAPER_A4_ROTATED,DMPAPER_A5_ROTATED)
4224         (DMPAPER_B4_JIS_ROTATED,DMPAPER_B5_JIS_ROTATED)
4225         (DMPAPER_JAPANESE_POSTCARD_ROTATED)
4226         (DMPAPER_DBL_JAPANESE_POSTCARD_ROTATED)
4227         (DMPAPER_A6_ROTATED,DMPAPER_JENV_KAKU2_ROTATED)
4228         (DMPAPER_JENV_KAKU3_ROTATED,DMPAPER_JENV_CHOU3_ROTATED)
4229         (DMPAPER_JENV_CHOU4_ROTATED,DMPAPER_B6_JIS)
4230         (DMPAPER_B6_JIS_ROTATED,DMPAPER_12X11,DMPAPER_JENV_YOU4)
4231         (DMPAPER_JENV_YOU4_ROTATED,DMPAPER_P16K,DMPAPER_P32K)
4232         (DMPAPER_P32KBIG,DMPAPER_PENV_1,DMPAPER_PENV_2)
4233         (DMPAPER_PENV_3,DMPAPER_PENV_4,DMPAPER_PENV_5)
4234         (DMPAPER_PENV_6,DMPAPER_PENV_7,DMPAPER_PENV_8)
4235         (DMPAPER_PENV_9,DMPAPER_PENV_10,DMPAPER_P16K_ROTATED)
4236         (DMPAPER_P32K_ROTATED,DMPAPER_P32KBIG_ROTATED)
4237         (DMPAPER_PENV_1_ROTATED,DMPAPER_PENV_2_ROTATED)
4238         (DMPAPER_PENV_3_ROTATED,DMPAPER_PENV_4_ROTATED)
4239         (DMPAPER_PENV_5_ROTATED,DMPAPER_PENV_6_ROTATED)
4240         (DMPAPER_PENV_7_ROTATED,DMPAPER_PENV_8_ROTATED)
4241         (DMPAPER_PENV_9_ROTATED,DMPAPER_PENV_10_ROTATED): Define.
4242         (DMPAPER_LAST): Value depends on DMPAPER_* variables actually defined.
4243         (DM_PANNINGWIDTH,DM_PANNINGHEIGHT,DM_DISPLAYFIXEDOUTPUT)
4244         (DMDO_DEFAULT,DMDO_90,DMDO_180,DMDO_270,DMDFO_DEFAULT,DMDFO_STRETCH)
4245         (DMDFO_CENTER): Define.
4246         (GetDCBrushColor,GetDCPenColor): Declare.
4247         * lib/msimg32.def (GetDCBrushColor,GetDCPenColor): Add stubs.
4248
4249 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4250
4251         * include/winnt.h (LANG_PERSIAN,LANG_LOWER_SORBIAN,LANG_UPPER_SORBIAN)
4252         (LANG_TSWANA,LANG_XHOSA,LANG_ZULU,LANG_MALTESE,LANG_SAMI,LANG_IRISH)
4253         (LANG_TIBETAN,LANG_WELSH,LANG_KHMER,LANG_LAO,LANG_SINHALESE)
4254         (LANG_INUKTITUT,LANG_AMHARIC,LANG_TAMAZIGHT,LANG_FRISIAN)
4255         (LANG_PASHTO,LANG_FILIPINO,LANG_HAUSA,LANG_YORUBA,LANG_QUECHUA)
4256         (LANG_SOTHO,LANG_BASHKIR,LANG_LUXEMBOURGISH,LANG_GREENLANDIC)
4257         (LANG_IGBO,LANG_TIGRIGNA,LANG_YI,LANG_MAPUDUNGUN,LANG_MOHAWK)
4258         (LANG_BRETON,LANG_UIGHUR,LANG_MAORI,LANG_OCCITAN,LANG_CORSICAN)
4259         (LANG_ALSATIAN,LANG_YAKUT,LANG_KICHE,LANG_KINYARWANDA,LANG_WOLOF)
4260         (LANG_DARI,LANG_MALAGASY)
4261         (SUBLANG_CUSTOM_DEFAULT,SUBLANG_CUSTOM_UNSPECIFIED)
4262         (SUBLANG_UI_CUSTOM_DEFAULT,SUBLANG_AFRIKAANS_SOUTH_AFRICA)
4263         (SUBLANG_ALBANIAN_ALBANIA,SUBLANG_ALSATIAN_FRANCE)
4264         (SUBLANG_AMHARIC_ETHIOPIA,SUBLANG_ARMENIAN_ARMENIA)
4265         (SUBLANG_ASSAMESE_INDIA,SUBLANG_BASHKIR_RUSSIA,SUBLANG_BASQUE_BASQUE)
4266         (SUBLANG_BELARUSIAN_BELARUS,SUBLANG_BENGALI_INDIA)
4267         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN)
4268         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC)
4269         (SUBLANG_BRETON_FRANCE,SUBLANG_BULGARIAN_BULGARIA)
4270         (SUBLANG_CATALAN_CATALAN,SUBLANG_CORSICAN_FRANCE)
4271         (SUBLANG_CZECH_CZECH_REPUBLIC,SUBLANG_CROATIAN_CROATIA)
4272         (SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,SUBLANG_DANISH_DENMARK)
4273         (SUBLANG_DIVEHI_MALDIVES,SUBLANG_ENGLISH_IRELAND)
4274         (SUBLANG_ENGLISH_INDIA,SUBLANG_ENGLISH_MALAYSIA)
4275         (SUBLANG_ENGLISH_SINGAPORE,SUBLANG_ESTONIAN_ESTONIA)
4276         (SUBLANG_FAEROESE_FAROE_ISLANDS,SUBLANG_FILIPINO_PHILIPPINES)
4277         (SUBLANG_FINNISH_FINLAND,SUBLANG_FRISIAN_NETHERLANDS)
4278         (SUBLANG_GALICIAN_GALICIAN,SUBLANG_GEORGIAN_GEORGIA)
4279         (SUBLANG_GREEK_GREECE,SUBLANG_GREENLANDIC_GREENLAND)
4280         (SUBLANG_GUJARATI_INDIA,SUBLANG_HAUSA_NIGERIA,SUBLANG_HEBREW_ISRAEL)
4281         (SUBLANG_HINDI_INDIA,SUBLANG_HUNGARIAN_HUNGARY)
4282         (SUBLANG_ICELANDIC_ICELAND,SUBLANG_IGBO_NIGERIA)
4283         (SUBLANG_INDONESIAN_INDONESIA,SUBLANG_INUKTITUT_CANADA)
4284         (SUBLANG_INUKTITUT_CANADA_LATIN,SUBLANG_IRISH_IRELAND)
4285         (SUBLANG_JAPANESE_JAPAN,SUBLANG_KAZAK_KAZAKHSTAN)
4286         (SUBLANG_KHMER_CAMBODIA,SUBLANG_KICHE_GUATEMALA)
4287         (SUBLANG_KINYARWANDA_RWANDA,SUBLANG_KONKANI_INDIA)
4288         (SUBLANG_KYRGYZ_KYRGYZSTAN,SUBLANG_LAO_LAO_PDR)
4289         (SUBLANG_LATVIAN_LATVIA,SUBLANG_LITHUANIAN_LITHUANIA)
4290         (SUBLANG_LOWER_SORBIAN_GERMANY,SUBLANG_LUXEMBOURGISH_LUXEMBOURG)
4291         (SUBLANG_MACEDONIAN_MACEDONIA,SUBLANG_MALAYALAM_INDIA)
4292         (SUBLANG_MALTESE_MALTA,SUBLANG_MAORI_NEW_ZEALAND)
4293         (SUBLANG_MAPUDUNGUN_CHILE,SUBLANG_MARATHI_INDIA,SUBLANG_MOHAWK_MOHAWK)
4294         (SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA,SUBLANG_MONGOLIAN_PRC)
4295         (SUBLANG_NEPALI_NEPAL,SUBLANG_OCCITAN_FRANCE,SUBLANG_ORIYA_INDIA)
4296         (SUBLANG_PASHTO_AFGHANISTAN,SUBLANG_PERSIAN_IRAN)
4297         (SUBLANG_POLISH_POLAND,SUBLANG_PORTUGUESE_PORTUGAL)
4298         (SUBLANG_PUNJABI_INDIA,SUBLANG_QUECHUA_BOLIVIA,SUBLANG_QUECHUA_ECUADOR)
4299         (SUBLANG_QUECHUA_PERU,SUBLANG_ROMANIAN_ROMANIA)
4300         (SUBLANG_ROMANSH_SWITZERLAND,SUBLANG_RUSSIAN_RUSSIA)
4301         (SUBLANG_SAMI_NORTHERN_NORWAY,SUBLANG_SAMI_NORTHERN_SWEDEN)
4302         (SUBLANG_SAMI_NORTHERN_FINLAND,SUBLANG_SAMI_LULE_NORWAY)
4303         (SUBLANG_SAMI_LULE_SWEDEN,SUBLANG_SAMI_SOUTHERN_NORWAY)
4304         (SUBLANG_SAMI_SOUTHERN_SWEDEN,SUBLANG_SAMI_SKOLT_FINLAND)
4305         (SUBLANG_SAMI_INARI_FINLAND,SUBLANG_SANSKRIT_INDIA)
4306         (SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_LATIN)
4307         (SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_CYRILLIC)
4308         (SUBLANG_SINDHI_AFGHANISTAN,SUBLANG_SINHALESE_SRI_LANKA)
4309         (SUBLANG_SOTHO_NORTHERN_SOUTH_AFRICA,SUBLANG_SLOVAK_SLOVAKIA)
4310         (SUBLANG_SLOVENIAN_SLOVENIA,SUBLANG_SPANISH_US,SUBLANG_SWEDISH_SWEDEN)
4311         (SUBLANG_SYRIAC,SUBLANG_TAJIK_TAJIKISTAN)
4312         (SUBLANG_TAMAZIGHT_ALGERIA_LATIN,SUBLANG_TAMIL_INDIA)
4313         (SUBLANG_TATAR_RUSSIA,SUBLANG_TELUGU_INDIA,SUBLANG_THAI_THAILAND)
4314         (SUBLANG_TIBETAN_PRC,SUBLANG_TIBETAN_BHUTAN,SUBLANG_TIGRIGNA_ERITREA)
4315         (SUBLANG_TSWANA_SOUTH_AFRICA,SUBLANG_TURKISH_TURKEY)
4316         (SUBLANG_TURKMEN_TURKMENISTAN,SUBLANG_UIGHUR_PRC)
4317         (SUBLANG_UKRAINIAN_UKRAINE,SUBLANG_UPPER_SORBIAN_GERMANY)
4318         (SUBLANG_VIETNAMESE_VIETNAM,SUBLANG_WELSH_UNITED_KINGDOM)
4319         (SUBLANG_WOLOF_SENEGAL,SUBLANG_YORUBA_NIGERIA)
4320         (SUBLANG_XHOSA_SOUTH_AFRICA,SUBLANG_YAKUT_RUSSIA,SUBLANG_YI_PRC)
4321         (SUBLANG_ZULU_SOUTH_AFRICA): Define.
4322         (SUBLANG_ARABIC_SAUDI_ARABIA): Removed by error.
4323         (SUBLANG_MARATHI_INDIA): Defined twice by error.
4324
4325 2006-05-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4326
4327         * lib/directx/Makefile.in: Remove reference to libquartz.a since
4328         it was moved.
4329
4330 2006-05-05  Earnie Boyd  <earnie@users.sf.net>
4331
4332         * lib/scrnsave.c: Correct misspelled SPI_SCREENSAVERUNNING to
4333         SPI_SETSCREENSAVERUNNING.
4334         * include winuser.h (SPI_SCREENSAVERRUNNING): Remove again.
4335
4336 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4337
4338         * include/winuser.h (SPI_SCREENSAVERRUNNING): Define.
4339         It had been removed because it's no documented, but Cygwin needs it.
4340
4341 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4342
4343         * include/amvideo.h (IFullScreenVideo): Define.
4344         (BIT_MASKS_MATCH,PALETTISED,PALETTE_ENTRIES,RESET_MASKS,RESET_PALETTE,
4345         SIZE_EGA_PALETTE,SIZE_MASKS,SIZE_PALETTE): Added Macros.
4346
4347 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4348
4349         * include/winnls.h (CAL_SYEARMONTH,CAL_ITWODIGITYEARMAX,
4350         CAL_NOUSEROVERRIDE,CAL_RETURN_NUMBER,CAL_USE_CP_ACP): Documented
4351         as available on Windows 98 and better.
4352         (CAL_SSHORTESTDAYNAME_1,CAL_SSHORTESTDAYNAME_2,CAL_SSHORTESTDAYNAME_3)
4353         (CAL_SSHORTESTDAYNAME_4,CAL_SSHORTESTDAYNAME_5,CAL_SSHORTESTDAYNAME_6)
4354         (CAL_SSHORTESTDAYNAME7,CAL_UMALQURA): Define, Windows Vista and better.
4355
4356 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4357
4358         * include/amvideo.h: New file.
4359         * include/dshow.h: Include <amvideo.h>.
4360
4361 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4362
4363         * include/winuser.h (MOUSEEVENTF_XDOWN,MOUSEEVENTF_XUP): Define.
4364         (MOUSEEVENTF_MOVE,MOUSEEVENTF_LEFTDOWN,MOUSEEVENTF_LEFTUP)
4365         (MOUSEEVENTF_RIGHTDOWN,MOUSEEVENTF_RIGHTUP,MOUSEEVENTF_MIDDLEDOWN)
4366         (MOUSEEVENTF_MIDDLEUP,MOUSEEVENTF_ABSOLUTE,MOUSEEVENTF_WHEEL): Cleanup.
4367         (HWND_BROADCAST): Cleanup.
4368         (HWND_MESSAGE): Windows 2000 only.
4369         (SMTO_ABORTIFHUNG,SMTO_BLOCK,SMTO_NORMAL): Cleanup.
4370         (SMTO_NOTIMEOUTIFNOTHUNG): Define.
4371         (SIF_DISABLENOSCROLL,SIF_PAGE,SIF_POS,SIF_RANGE,SIF_TRACKPOS)
4372         (SIF_ALL): Cleanup.
4373         (SWP_DRAWFRAME,SWP_FRAMECHANGED,SWP_HIDEWINDOW,SWP_NOACTIVATE)
4374         (SWP_NOCOPYBITS,SWP_NOMOVE,SWP_NOSIZE,SWP_NOREDRAW,SWP_NOZORDER)
4375         (SWP_SHOWWINDOW,SWP_NOOWNERZORDER,SWP_NOREPOSITION,SWP_NOSENDCHANGING)
4376         (SWP_DEFERERASE,SWP_ASYNCWINDOWPOS): Cleanup.
4377         (HSHELL_ENDTASK,HSHELL_ACCESSIBILITYSTATE,HSHELL_APPCOMMAND): Define.
4378         (SPI_GETBLOCKSENDINPUTRESETS,SPI_GETCARETWIDTH,SPI_GETDROPSHADOW)
4379         (SPI_GETFILTERKEYS,SPI_GETFLATMENU,SPI_GETFOCUSBORDERHEIGHT)
4380         (SPI_GETFOCUSBORDERWIDTH,SPI_GETFONTSMOOTHINGCONTRAST)
4381         (SPI_GETFONTSMOOTHINGTYPE,SPI_GETFOREGROUNDFLASHCOUNT)
4382         (SPI_GETMENUSHOWDELAY,SPI_GETMOUSECLICKLOCK,SPI_GETMOUSECLICKLOCKTIME)
4383         (SPI_GETMOUSEHOVERHEIGHT,SPI_GETMOUSEHOVERTIME,SPI_GETMOUSEHOVERWIDTH)
4384         (SPI_GETMOUSESONAR,SPI_GETMOUSEVANISH,SPI_GETNONCLIENTMETRICS)
4385         (SPI_GETPOWEROFFACTIVE,SPI_GETPOWEROFFTIMEOUT,SPI_GETSCREENREADER)
4386         (SPI_GETSCREENSAVEACTIVE,SPI_GETSCREENSAVERRUNNING)
4387         (SPI_GETSCREENSAVETIMEOUT,SPI_GETMOUSEVANISH,SPI_GETNONCLIENTMETRICS)
4388         (SPI_GETPOWEROFFACTIVE,SPI_GETPOWEROFFTIMEOUT,SPI_GETSCREENREADER)
4389         (SPI_GETSCREENSAVEACTIVE,SPI_GETSCREENSAVERRUNNING)
4390         (SPI_GETSCREENSAVETIMEOUT,SPI_GETSNAPTODEFBUTTON,SPI_GETUIEFFECTS)
4391         (SPI_SETBLOCKSENDINPUTRESETS,SPI_SETCARETWIDTH,SPI_SETCURSORS)
4392         (SPI_SETDROPSHADOW,SPI_SETFILTERKEYS,SPI_SETFLATMENU)
4393         (SPI_SETFOCUSBORDERHEIGHT,SPI_SETFOCUSBORDERWIDTH)
4394         (SPI_SETFONTSMOOTHINGCONTRAST,SPI_SETFONTSMOOTHINGTYPE)
4395         (SPI_SETFOREGROUNDFLASHCOUNT,SPI_SETICONS,SPI_SETMENUSHOWDELAY)
4396         (SPI_SETMOUSECLICKLOCK,SPI_SETMOUSECLICKLOCKTIME)
4397         (SPI_SETMOUSEHOVERHEIGHT,SPI_SETMOUSEHOVERTIME)
4398         (SPI_SETMOUSEHOVERWIDTH,SPI_SETMOUSESONAR,SPI_SETMOUSEVANISH)
4399         (SPI_SETNONCLIENTMETRICS,SPI_SETPENWINDOWS,SPI_SETPOWEROFFACTIVE)
4400         (SPI_SETPOWEROFFTIMEOUT,SPI_SETSCREENREADER,SPI_SETSCREENSAVEACTIVE)
4401         (SPI_SETSCREENSAVERRUNNING,SPI_SETSCREENSAVETIMEOUT,SPI_SETSHOWIMEUI)
4402         (SPI_SETSNAPTODEFBUTTON,SPI_SETUIEFFECTS): Define.
4403         (SPI_GETACCESSTIMEOUT,SPI_GETANIMATION,SPI_GETBEEP)
4404         (SPI_GETDEFAULTINPUTLANG,SPI_GETDESKWALLPAPER,SPI_GETDRAGFULLWINDOWS)
4405         (SPI_GETFASTTASKSWITCH,SPI_GETFONTSMOOTHING,SPI_GETGRIDGRANULARITY)
4406         (SPI_GETHIGHCONTRAST,SPI_GETICONMETRICS,SPI_GETICONTITLELOGFONT)
4407         (SPI_GETICONTITLEWRAP,SPI_GETKEYBOARDDELAY,SPI_GETKEYBOARDPREF)
4408         (SPI_GETKEYBOARDSPEED,SPI_GETLOWPOWERACTIVE,SPI_GETLOWPOWERTIMEOUT)
4409         (SPI_GETMENUDROPALIGNMENT,SPI_GETMENUUNDERLINES,SPI_GETMINIMIZEDMETRICS)
4410         (SPI_GETMOUSE,SPI_GETMOUSEKEYS,SPI_GETMOUSESPEED,SPI_GETMOUSETRAILS)
4411         (SPI_GETSERIALKEYS,SPI_GETSHOWIMEUI,SPI_GETSHOWSOUNDS)
4412         (SPI_GETSOUNDSENTRY,SPI_GETSTICKYKEYS,SPI_GETTOGGLEKEYS)
4413         (SPI_GETWHEELSCROLLLINES,SPI_GETWINDOWSEXTENSION,SPI_GETWORKAREA)
4414         (SPI_ICONHORIZONTALSPACING,SPI_ICONVERTICALSPACING)
4415         (SPI_SETACCESSTIMEOUT,SPI_SETANIMATION,SPI_SETBEEP,SPI_SETBORDER)
4416         (SPI_SETDEFAULTINPUTLANG,SPI_SETDESKPATTERN,SPI_SETDESKWALLPAPER)
4417         (SPI_SETDOUBLECLICKTIME,SPI_SETDOUBLECLKHEIGHT,SPI_SETDOUBLECLKWIDTH)
4418         (SPI_SETDRAGFULLWINDOWS,SPI_SETDRAGHEIGHT,SPI_SETDRAGWIDTH)
4419         (SPI_SETFASTTASKSWITCH,SPI_SETFONTSMOOTHING,SPI_SETGRIDGRANULARITY)
4420         (SPI_SETHANDHELD,SPI_SETHIGHCONTRAST,SPI_SETICONMETRICS)
4421         (SPI_SETICONTITLELOGFONT,SPI_SETICONTITLEWRAP,SPI_SETKEYBOARDDELAY)
4422         (SPI_SETKEYBOARDPREF,SPI_SETKEYBOARDSPEED,SPI_SETLANGTOGGLE)
4423         (SPI_SETLOWPOWERACTIVE,SPI_SETLOWPOWERTIMEOUT,SPI_SETMENUDROPALIGNMENT)
4424         (SPI_SETMENUUNDERLINES,SPI_SETMINIMIZEDMETRICS,SPI_SETMOUSE)
4425         (SPI_SETMOUSEBUTTONSWAP,SPI_SETMOUSEKEYS,SPI_SETMOUSESPEED)
4426         (SPI_SETMOUSETRAILS,SPI_SETSERIALKEYS,SPI_SETSHOWSOUNDS)
4427         (SPI_SETSOUNDSENTRY,SPI_SETSTICKYKEYS,SPI_SETTOGGLEKEYS)
4428         (SPI_SETWHEELSCROLLLINES,SPI_SETWORKAREA): Cleanup.
4429         (SPI_GETMOUSETRAILS,SPI_SETMOUSETRAILS): Defined twice by error.
4430         (SPI_SCREENSAVERRUNNING): Removed.
4431         (SPIF_UPDATEINIFILE,SPIF_SENDCHANGE,SPIF_SENDWININICHANGE): Cleanup.
4432         * include/wingdi.h (ETO_NUMERICSLATIN,ETO_NUMERICSLOCAL)
4433         (ETO_IGNORELANGUAGE,ETO_PDY): Define.
4434         (ETO_CLIPPED,ETO_GLYPH_INDEX,ETO_OPAQUE,ETO_RTLREADING): Cleanup.
4435
4436 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4437
4438         * include/mprapi.h (MPR_SERVER_HANDLE): Add typedef.
4439         (MprAdminGetPDCServer): Add prototype.
4440         (MprAdminSendUserMessage): Add prototype.
4441         (MprAdminUserGetInfo): Add prototype.
4442         (MprAdminUserSetInfo): Add prototype.
4443         * lib/mprapi.def: Add stubs for above functions.
4444
4445 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4446
4447         * lib/directx/quartz.def: Move from here...
4448         * lib/quartz.def: ... to here.
4449
4450 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4451
4452         * include/amaudio.h: New file.
4453         * include/dshow.h: Include <amaudio.h>.
4454
4455 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4456
4457         * include/errors.h: New file.
4458         * include/dshow.h: Include <errors.h>.
4459
4460 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4461
4462         * include/dshow.h: New file.
4463         * include/evcode.h: New file.
4464         * include/audevcod.h: New file.
4465         * include/dvdevcod.h: New file.
4466
4467 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4468
4469         * include/mprapi.h (RAS_SERVER_HANDLE): Add typedef.
4470         (MprAdminConnectionClearStats): Add prototype.
4471         (MprAdminConnectionEnum): Add  prototype.
4472         (MprAdminConnectionGetInfo): Add prototype.
4473         (MprAdminConnectionRemoveQuarantine): Add prototype.
4474         (MprAdminPortClearStats): Add prototype.
4475         (MprAdminPortDisconnect): Add prototype.
4476         (MprAdminPortEnum): Add prototype.
4477         (MprAdminPortGetInfo): Add prototype.
4478         (MprAdminPortReset): Add prototype.
4479         * lib/mprapi.def: New file.
4480
4481 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4482
4483         *  include/mprapi.h: #include <lmcons.h>
4484         (MAX_DEVICETYPE_NAME): Add define.
4485         (MAX_PHONE_NUMBER_LEN): Add define.
4486         (ATADDRESSLEN): Add define.
4487         (IPADDRESSLEN): Add define.
4488         (IPXADDRESSLEN): Add define.
4489         (MPR_ENABLE_RAS_ON_DEVICE): Add define.
4490         (MPR_ENABLE_ROUTING_ON_DEVICE): Add define.
4491         (RAS_FLAGS_PPP_CONNECTION): Add define.
4492         (RAS_FLAGS_MESSENGER_PRESENT): Add define.
4493         (RAS_FLAGS_RAS_CONNECTION): Add define.
4494         (RAS_FLAGS_QUARANTINE_PRESENT): Add define.
4495         (RASCCPCA_STAC): Add define.
4496         (RASCCPCA_MPPC): Add define.
4497         (PPP_CCP_COMPRESSION): Add define.
4498         (PPP_CCP_ENCRYPTION40BITOLD): Add define.
4499         (PPP_CCP_ENCRYPTION40BIT): Add define.
4500         (PPP_CCP_ENCRYPTION128BIT): Add define.
4501         (PPP_CCP_ENCRYPTION56BIT): Add define.
4502         (PPP_CCP_HISTORYLESS): Add define.
4503         (RASPRIV_NoCallback): Add define.
4504         (RASPRIV_AdminSetCallback): Add define.
4505         (RASPRIV_CallerSetCallback): Add define.
4506         (RASPRIV_DialinPrivilege): Add define.
4507         (RASPRIV_CallbackType): Add define.
4508         (RASPRIV2_DialinPolicy): Add define.
4509         (PPP_LCP_PAP): Add define.
4510         (PPP_LCP_SPAP): Add define.
4511         (PPP_LCP_CHAP): Add define.
4512         (PPP_LCP_EAP): Add define.
4513         (PPP_LCP_CHAP_MD5): Add define.
4514         (PPP_LCP_CHAP_MS): Add define.
4515         (PPP_LCP_CHAP_MSV2): Add define.
4516         (PPP_LCP_MULTILINK_FRAMING): Add define.
4517         (enum _RAS_HARDWARE_CONDITION): Add.
4518         (enum _RAS_PORT_CONDITION): Add.
4519         (struct _PPP_ATCP_INFO): Add.
4520         (struct _PPP_ATCP_INFO): Add.
4521         (struct _PPP_IPCP_INFO): Add.
4522         (struct _PPP_IPCP_INFO2): Add.
4523         (struct _PPP_IPXCP_INFO): Add.
4524         (struct _PPP_LCP_INFO): Add.
4525         (struct _PPP_NBFCP_INFO): Add.
4526         (struct _PPP_INFO): Add.
4527         (struct _PPP_INFO_2): Add.
4528         (struct _RAS_CONNECTION_0): Add.
4529         (struct RAS_CONNECTION_1): Add.
4530         (struct _RAS_CONNECTION_2): Add.
4531         (struct RAS_PORT_0): Add.
4532         (struct _RAS_PORT_1): Add.
4533         (struct _RAS_USER_0): Add.
4534         (struct _RAS_USER_1): Add.
4535
4536 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4537
4538         * include/mprapi.h: New file.
4539         * include/routprot.h: New file.
4540         * include/ipxrtdef.h: New file.
4541         * include/ipxconst.h: New file.
4542         * include/stm.h: New file.
4543
4544 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4545
4546         * include/ddk/winddk.h (KAFFINITY): Fix typo.
4547         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
4548
4549 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4550
4551         * include/winbase.h (ENUMRESLANGPROC,ENUMRESLANGPROCA,ENUMRESLANGPROCW)
4552         (ENUMRESNAMEPROC,ENUMRESNAMEPROCA,ENUMRESNAMEPROCW)
4553         (ENUMRESTYPEPROC,ENUMRESTYPEPROCA,ENUMRESTYPEPROCW): ANSI and Unicode
4554         versions.
4555         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
4556
4557 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4558
4559         * include/ntsecapi.h (POLICY_DNS_DOMAIN_INFO): Fix typo.
4560         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
4561
4562 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4563
4564         * include/wingdi.h (BITMAPV5HEADER): New structure definition.
4565
4566 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4567
4568         * include/basetyps.h (REFFMTID): Define properly.
4569
4570 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4571
4572         * include/winnt.h (WT_SET_MAX_THREADPOOL_THREADS): Define.
4573         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
4574
4575 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4576
4577         * include/ipifcons.h (MIN_IF_TYPE,IF_TYPE_OTHER,IF_TYPE_REGULAR_1822)
4578         (IF_TYPE_HDH_1822,IF_TYPE_DDN_X25,IF_TYPE_RFC877_X25)
4579         (IF_TYPE_ETHERNET_CSMACD,IF_TYPE_IS088023_CSMACD)
4580         (IF_TYPE_ISO88024_TOKENBUS,IF_TYPE_ISO88025_TOKENRING)
4581         (IF_TYPE_ISO88026_MAN,IF_TYPE_STARLAN,IF_TYPE_PROTEON_10MBIT)
4582         (IF_TYPE_PROTEON_80MBIT,IF_TYPE_HYPERCHANNEL,IF_TYPE_FDDI)
4583         (IF_TYPE_LAP_B,IF_TYPE_SDLC,IF_TYPE_DS1,IF_TYPE_E1,IF_TYPE_BASIC_ISDN)
4584         (IF_TYPE_PRIMARY_ISDN,IF_TYPE_PROP_POINT2POINT_SERIAL,IF_TYPE_PPP)
4585         (IF_TYPE_SOFTWARE_LOOPBACK,IF_TYPE_EON,IF_TYPE_ETHERNET_3MBIT)
4586         (IF_TYPE_NSIP,IF_TYPE_SLIP,IF_TYPE_ULTRA,IF_TYPE_DS3,IF_TYPE_SIP)
4587         (IF_TYPE_FRAMERELAY,IF_TYPE_RS232,IF_TYPE_PARA,IF_TYPE_ARCNET)
4588         (IF_TYPE_ARCNET_PLUS,IF_TYPE_ATM,IF_TYPE_MIO_X25,IF_TYPE_SONET)
4589         (IF_TYPE_X25_PLE,IF_TYPE_ISO88022_LLC,IF_TYPE_LOCALTALK)
4590         (IF_TYPE_SMDS_DXI,IF_TYPE_FRAMERELAY_SERVICE,IF_TYPE_V35,IF_TYPE_HSSI)
4591         (IF_TYPE_HIPPI,IF_TYPE_MODEM,IF_TYPE_AAL5,IF_TYPE_SONET_PATH)
4592         (IF_TYPE_SONET_VT,IF_TYPE_SMDS_ICIP,IF_TYPE_PROP_VIRTUAL)
4593         (IF_TYPE_PROP_MULTIPLEXOR,IF_TYPE_IEEE80212,IF_TYPE_FIBRECHANNEL)
4594         (IF_TYPE_HIPPIINTERFACE,IF_TYPE_FRAMERELAY_INTERCONNECT)
4595         (IF_TYPE_AFLANE_8023,IF_TYPE_AFLANE_8025,IF_TYPE_CCTEMUL)
4596         (IF_TYPE_FASTETHER,IF_TYPE_ISDN,IF_TYPE_V11,IF_TYPE_V36)
4597         (IF_TYPE_G703_64K,IF_TYPE_G703_2MB,IF_TYPE_QLLC,IF_TYPE_FASTETHER_FX)
4598         (IF_TYPE_CHANNEL,IF_TYPE_IEEE80211,,IF_TYPE_IBM370PARCHAN)
4599         (IF_TYPE_ESCON,IF_TYPE_DLSW,IF_TYPE_ISDN_S,IF_TYPE_ISDN_U)
4600         (IF_TYPE_LAP_D,IF_TYPE_IPSWITCH,IF_TYPE_RSRB,IF_TYPE_ATM_LOGICAL)
4601         (IF_TYPE_DS0,IF_TYPE_DS0_BUNDLE,IF_TYPE_BSC,IF_TYPE_ASYNC,IF_TYPE_CNR)
4602         (IF_TYPE_ISO88025R_DTR,IF_TYPE_EPLRS,IF_TYPE_ARAP,IF_TYPE_PROP_CNLS)
4603         (IF_TYPE_HOSTPAD,IF_TYPE_TERMPAD,IF_TYPE_FRAMERELAY_MPI,IF_TYPE_X213)
4604         (IF_TYPE_ADSL,IF_TYPE_RADSL,IF_TYPE_SDSL,IF_TYPE_VDSL)
4605         (IF_TYPE_ISO88025_CRFPRINT,IF_TYPE_MYRINET,IF_TYPE_VOICE_EM)
4606         (IF_TYPE_VOICE_FXO,IF_TYPE_VOICE_FXS,IF_TYPE_VOICE_ENCAP)
4607         (IF_TYPE_VOICE_OVERIP,IF_TYPE_ATM_DXI,IF_TYPE_ATM_FUNI,IF_TYPE_ATM_IMA)
4608         (IF_TYPE_PPPMULTILINKBUNDLE,IF_TYPE_IPOVER_CDLC,IF_TYPE_IPOVER_CLAW)
4609         (IF_TYPE_STACKTOSTACK,IF_TYPE_VIRTUALIPADDRESS,IF_TYPE_MPC
4610         (IF_TYPE_IPOVER_ATM,IF_TYPE_ISO88025_FIBER,IF_TYPE_TDLC
4611         (IF_TYPE_GIGABITETHERNET,IF_TYPE_HDLC,IF_TYPE_LAP_F,IF_TYPE_V37)
4612         (IF_TYPE_X25_MLP,IF_TYPE_X25_HUNTGROUP,IF_TYPE_TRANSPHDLC)
4613         (IF_TYPE_INTERLEAVE,IF_TYPE_FAST,IF_TYPE_IP,IF_TYPE_DOCSCABLE_MACLAYER)
4614         (IF_TYPE_DOCSCABLE_DOWNSTREAM,IF_TYPE_DOCSCABLE_UPSTREAM)
4615         (IF_TYPE_A12MPPSWITCH,IF_TYPE_TUNNEL,IF_TYPE_COFFEE,IF_TYPE_CES)
4616         (IF_TYPE_ATM_SUBINTERFACE,IF_TYPE_L2_VLAN,IF_TYPE_L3_IPVLAN)
4617         (IF_TYPE_L3_IPXVLAN,IF_TYPE_DIGITALPOWERLINE,IF_TYPE_MEDIAMAILOVERIP)
4618         (IF_TYPE_DTM,IF_TYPE_DCN,IF_TYPE_IPFORWARD,IF_TYPE_MSDSL)
4619         (IF_TYPE_IEEE1394,IF_TYPE_RECEIVE_ONLY,MAX_IF_TYPE,IF_ACCESS_LOOPBACK)
4620         (IF_ACCESS_BROADCAST,IF_ACCESS_POINTTOPOINT)
4621         (IF_ACCESS_POINTTOMULTIPOINT,IF_CHECK_NONE,IF_CHECK_MCAST)
4622         (IF_CHECK_SEND,IF_CONNECTION_DEDICATED,IF_CONNECTION_PASSIVE)
4623         (IF_CONNECTION_DEMAND,IF_ADMIN_STATUS_UP,IF_ADMIN_STATUS_DOWN)
4624         (IF_ADMIN_STATUS_TESTING,IF_OPER_STATUS_NON_OPERATIONAL)
4625         (IF_OPER_STATUS_UNREACHABLE,IF_OPER_STATUS_DISCONNECTED)
4626         (IF_OPER_STATUS_CONNECTING,IF_OPER_STATUS_CONNECTED)
4627         (IF_OPER_STATUS_OPERATIONAL): Define.
4628         * include/winbase.h (CancelWaitableTimer,UnregisterWait):
4629         Add function declaration.
4630         * include/mgm.h: New file.
4631         * lib/rtm.def: New file.
4632         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
4633
4634 2006-04-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4635
4636         * include/ws2tcpip.h (gai_strerror): Remove thread-safety comment.
4637         This function cannot be made thread-safe, the API would have to be
4638         changed for that, just like strerror() -> strerror_r() and similar
4639         ISO C or POSIX functions...
4640
4641 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4642
4643         * include/edevdefs.h: New file.
4644
4645 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4646
4647         * include/mmsystem.h (_LPCWAVEFORMATEX_DEFINED): Define.
4648         Use as guard for the WAVEFORMATEX structure instead of
4649         _WAVEFORMATEX_ to avoid clashes with DirectSound. Keep
4650         _WAVEFORMATEX_ for compatibility.
4651         Thanks to:    Andrew Jones <guln at sf dot net>
4652
4653 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4654
4655         * include/winuser.h (CharNextEx,CharNextExW,CharPrevEx,CharPrevExW):
4656         Delete. Only CharNextExA and CharPrevExA are documented in MSDN.
4657         Thanks to:    David Golub <david_golub at sf dot net>
4658
4659 2006-04-18  Eric House  <ehouse@eehouse.org>
4660
4661         PocketPC support.
4662         * include/aygshell.h: New file [_WIN32_WCE]. Declare most common
4663         functions for using aygshell on PocketPC:
4664         SHCreateMenuBar, SHFindMenuBar, SHCreateNewItem, SHFullScreen,
4665         SHSipInfo, SHHandleWMActivate, SHHandleWMSettingChange
4666
4667         * include/commctrl.h [_WIN32_WCE] Add function prototypes for
4668         command bar API on PocketPC:
4669         CommandBar_Create, CommandBar_Show, CommandBar_AddBitmap,
4670         CommandBar_InsertComboBox, CommandBar_InsertMenubar,
4671         CommandBar_InsertMenubarEx, CommandBar_DrawMenuBar,
4672         CommandBar_GetMenu, CommandBar_AddAdornments, CommandBar_Height,
4673         CommandBar_InsertButton, CommandBar_Destroy.
4674
4675         * include/winbase.h [_WIN32_WCE] (WIN32_FIND_DATA{A|W}): Remove
4676         fields not present on PocketPC.
4677         (GetCurrentThreadId): Conditionally declare as extern function
4678         without dllimport attribute on PocketPC.
4679         (ResetEvent): Likwise.
4680         (SetEvent): Likewise.
4681
4682         * include/wingdi.h [_WIN32_WCE]  (GetTextExtentPoint32{A|W}):
4683         Conditionally declare as extern function without dllimport
4684          attribute on PocketPC.
4685         * winuser.h  [_WIN32_WCE] (DialogBoxParam{A|W}): Conditionally
4686         declare as extern function without dllimport attribute on PocketPC.
4687
4688 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4689
4690         * lib/test.c: Include icm.h.
4691
4692 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4693
4694         * include/wingdi.h (ColorCorrectPalette): Add declaration.
4695         (CreateColorSpace): Add UNICODE mappings.
4696         * lib/gdi32.def (ColorCorrectPalette): Add stub.
4697         * include/icm.h: New file.
4698         * lib/mscms.def: New file.
4699         * lib/icmui.def: New file.
4700
4701 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4702
4703         * include/winnt.h (IMAGE_FILE_MACHINE_IA64): New define.
4704         (IMAGE_FILE_MACHINE_AMD64): New define.
4705         (IMAGE_NT_OPTIONAL_HDR32_MAGIC,IMAGE_NT_OPTIONAL_HDR64_MAGIC):
4706         New defines.
4707         (IMAGE_NT_OPTIONAL_HDR_MAGIC): Map to one of the above.
4708         (IMAGE_SUBSYSTEM_NATIVE_WINDOWS): New define.
4709         (IMAGE_SUBSYSTEM_WINDOWS_CE_GUI): New define.
4710         (IMAGE_DLLCHARACTERISTICS_WDM_DRIVER): New define.
4711         (IMAGE_DIRECTORY_ENTRY_ARCHITECTURE,IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT)
4712         (IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR): New defines.
4713         (IMAGE_SCN_TYPE_REG,IMAGE_SCN_TYPE_DSECT,IMAGE_SCN_TYPE_NOLOAD)
4714         (IMAGE_SCN_TYPE_GROUP,IMAGE_SCN_TYPE_COPY,IMAGE_SCN_TYPE_OVER):
4715         New defines.
4716         (IMAGE_SCN_ALIGN_128BYTES,IMAGE_SCN_ALIGN_256BYTES)
4717         (IMAGE_SCN_ALIGN_512BYTES,IMAGE_SCN_ALIGN_1024BYTES)
4718         (IMAGE_SCN_ALIGN_2048BYTES,IMAGE_SCN_ALIGN_4096BYTES)
4719         (IMAGE_SCN_ALIGN_8192BYTES): New defines.
4720         (IMAGE_DEBUG_TYPE_BORLAND): New define.
4721         (IMAGE_OPTIONAL_HEADER32,PIMAGE_OPTIONAL_HEADER32)
4722         (IMAGE_OPTIONAL_HEADER64,PIMAGE_OPTIONAL_HEADER64): New structure
4723         definitions and typedefs.
4724         (IMAGE_OPTIONAL_HEADER,PIMAGE_OPTIONAL_HEADER): Map to the above.
4725         (IMAGE_NT_HEADERS32,PIMAGE_NT_HEADERS32,IMAGE_NT_HEADERS64)
4726         (PIMAGE_NT_HEADERS64): New structure definitions and typedefs.
4727         (IMAGE_NT_HEADERS,PIMAGE_NT_HEADERS): Map to the above.
4728         (IMAGE_LOAD_CONFIG_DIRECTORY64,PIMAGE_LOAD_CONFIG_DIRECTORY64):
4729         New structure definition and typedefs.
4730         (IMAGE_CE_RUNTIME_FUNCTION_ENTRY,PIMAGE_CE_RUNTIME_FUNCTION_ENTRY):
4731         Likewise.
4732         (IMAGE_FUNCTION_ENTRY64,PIMAGE_FUNCTION_ENTRY64): Likewise.
4733
4734 2006-04-18  Bart Oldeman  <bartoldeman@users.sf.net>
4735
4736         * lib/test.c: Fix typo in #inlcude.
4737         * include/aclui.h: INTERFACE should not remain
4738         defined at the end of the header.
4739         * include/servprov.h: Ditto.
4740
4741 2006-04-16  Danny Smith  <dannysmith@users.sourceforge.net>
4742
4743         * include/ws2tcpip.h (gai_strerror): Add thread-safety comment.
4744
4745 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4746
4747         * include/ws2tcpip.h (gai_strerrorA,gai_strerrorW): Implement inline.
4748
4749 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4750
4751         * include/wsahelp.h (system_header): Add pragma.
4752         * include/ws2spi.h (system_header): Add pragma.
4753         * include/rasdlg.h (system_header): Add pragma.
4754         * include/rasdlg.h (_RASDLG_H): Define.
4755         Define instead of _RASDLG_H_, this is the w32api standard.
4756         * include/mlang.h (_MLANG_H): Define.
4757         Define instead of _MLANG_H_, this is the w32api standard.
4758         * include/setupapi.h (_SETUPAPI_H): Define.
4759         Define instead of _SETUPAPI_H_, this is the w32api standard.
4760
4761 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4762
4763         * include/rpcndr.h (boolean): Add typedef.
4764         Thanks to:    James du Russel <ephelon at users dot sf dot net>
4765         * include/rpcndr.h (_RPCNDR_H): Define.
4766         Define in addition to __RPCNDR_H__, this is the w32api standard.
4767
4768 2006-04-14  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4769
4770         * include/w32api.h: Increment version to 3.7.
4771         * Makefile.in: Ditto.
4772
4773 2006-04-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4774
4775         * include/winbase.h (GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS,
4776         GET_MODULE_HANDLE_EX_FLAG_PIN,
4777         GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT): Define.
4778         Thanks to:    Brandon Sneed <brandon at redf dot net>
4779
4780 2006-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
4781
4782         * include/secext.h: Enclose function declarations in extern "C"
4783         if __cplusplus.
4784
4785 2006-04-11  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4786
4787         * include/comcat.h: INTERFACE should not remain defined
4788         at the end of the header.
4789         * include/docobj.h: Ditto.
4790         * include/exdisp.h: Ditto.
4791         * include/intshcut.h: Ditto.
4792         * include/mlang.h: Ditto.
4793         * include/mshtml.h: Ditto.
4794         * include/oaidl.h: Ditto.
4795         * include/objidl.h: Ditto.
4796         * include/objsafe.h: Ditto.
4797         * include/ocidl.h: Ditto.
4798         * include/oleacc.h: Ditto.
4799         * include/oledlg.h: Ditto.
4800         * include/oleidl.h: Ditto.
4801         * include/richole.h: Ditto.
4802         * include/shldisp.h: Ditto.
4803         * include/shlobj.h: Ditto.
4804         * include/unknwn.h: Ditto.
4805         * include/vfw.h: Ditto.
4806         Thanks to:    Brandon Sneed <brandon at redf dot net>
4807
4808 2006-04-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4809
4810         * include/commdlg.h [_WIN32_WINNT >= 0x0500] (PD_CURRENTPAGE)
4811         (PD_NOCURRENTPAGE,PD_EXCLUSIONFLAGS,PD_USELARGETEMPLATE): Define.
4812         Thanks to:    Wolfgang Glas <softadm at users dot sf dot net>
4813
4814 2006-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
4815
4816         * include/iphlpapi.h (GetAdaptersAddresses): Check for winsock2
4817         here also.
4818
4819 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4820
4821         * include/wincrypt.h (PROV_MS_EXCHANGE): Define.
4822         We should probably remove PROV_MS_MAIL but I'm keeping it for
4823         now for compatibility reasons.
4824         Thanks to:    Marcus Agehall <agehall at users dot sf dot net>
4825
4826 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4827
4828         * include/commdlg.h [_WIN32_WINNT >= 0x0500] (START_PAGE_GENERAL)
4829         (PD_RESULT_PRINT,PD_RESULT_APPLY): Define.
4830         Thanks to:    Wolfgang Glas <softadm at users dot sf dot net>
4831
4832 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4833
4834         * include/wingdi.h [WINVER >= 0x0410]
4835         (AlphaBlend,GradientFill,TransparentBlt): Windows 98 and better.
4836         Thanks to:    Alessandro Antonello <aleantonello at users dot sf dot net>
4837
4838 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4839
4840         * include/wingdi.h (CAPTUREBLT,NOMIRRORBITMAP): Define.
4841         * include/commctrl.h (WC_LINKA,WC_LINKW,LIF_ITEMINDEX,LIF_STATE)
4842         (LIF_ITEMID,LIF_URL,LIS_FOCUSED,LIS_ENABLED,LIS_VISITED,LM_HITTEST)
4843         (LM_GETIDEALHEIGHT,LM_SETITEM,LM_GETITEM,MAX_LINKID_TEXT)
4844         (L_MAX_URL_LENGTH): Define.
4845         (LITEM,LHITTESTINFO,NMLINK): Add structures.
4846         Thanks to:    Brandon Sneed <brandon at redf dot net>
4847
4848 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4849
4850         * include/w32api.h (IE601,IE602,IE7): Define for recent versions of IE.
4851
4852 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4853
4854         * include/w32api.h (_W32API_H): Define.
4855         Define in addition to _W32API_H_, this is the w32api standard.
4856
4857 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4858
4859         * include/w32api.h (WindowsVista): Define.
4860
4861 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4862
4863         * include/iptypes.h (IP_ADAPTER_*): Define parts that depend
4864         on SOCKET_ADDRESS only if winsock2.h has already been included.
4865
4866 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4867
4868         * include/winuser.h (WM_IME_*): Remove. Defined in imm.h.
4869
4870 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4871
4872         * include/iphlpapi.h (GAA_FLAG_*): Define.
4873         (GetAdaptersAddresses): Add function declaration.
4874         * lib/iphlpapi.def (GetAdaptersAddresses): Add function stub.
4875         Thanks to:    ross <rossboulet at users dot sf dot net>
4876
4877 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4878
4879         * include/iptypes.h (IP_INTERFACE_NAME_INFO,
4880         IP_ADAPTER_ANYCAST_ADDRESS,IP_ADAPTER_MULTICAST_ADDRESS,
4881         IP_ADAPTER_UNICAST_ADDRESS,IP_ADAPTER_DNS_SERVER_ADDRESS,
4882         IP_ADAPTER_PREFIX,IP_ADAPTER_ADDRESSES): Add structures.
4883         (IF_OPER_STATUS,IP_DAD_STATE,IP_PREFIX_ORIGIN,IP_SUFFIX_ORIGIN,
4884         SCOPE_LEVEL): Add enums.
4885         (IP_ADAPTER_*): Define.
4886
4887 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4888
4889         * include/winuser.h (GetWindowExtEx): Removed, belongs to wingdi.h.
4890         Thanks to:    Sergey Philippov <phis at users dot sf dot net>
4891
4892 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4893
4894         * include/objidl.h (PIDSI_*): Define.
4895         (PRSPEC_*): Define.
4896         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4897
4898 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4899
4900         * include/winbase.h (LOGON32_PROVIDER_WINNT40,
4901         LOGON32_PROVIDER_WINNT50, LOGON32_LOGON_NETWORK,
4902         LOGON32_LOGON_UNLOCK, LOGON32_LOGON_NETWORK_CLEARTEXT,
4903         LOGON32_LOGON_NEW_CREDENTIALS): Define.
4904         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4905
4906 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4907
4908         * include/mq.h: New file.
4909         * lib/mqrt.def (MQ*): Define a few missing functions.
4910
4911 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4912
4913         * lib/mqrt.def: New file.
4914         Needs the mq.h file to work properly, working on it.
4915         Thanks to:    Pascal Obry <pobry at users dot sf dot net>
4916
4917 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4918
4919         * include/winerror.h (STG_E_*):  Define.
4920         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4921         * include/winerror.h (STG_S_*): Define.
4922         (CO_S_MACHINENAMENOTFOUND): Define.
4923         (RPC_E_*): Define.
4924         (NTE_*): Define.
4925
4926 2006-04-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4927
4928         * include/commctrl.h (ListView_*):  Define and correct.
4929         (LVM_*): Define.
4930
4931 2006-04-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4932
4933         * include/winuser.h (WM_IME_*): Define (DWORD type).
4934         (EM_*IMESTATUS): Define.
4935         (WM_*): Define.
4936         (XBUTTON*): Define.
4937         Thanks to:    Steve Folly <spfolly at users dot sf dot net>
4938
4939 2006-03-31  Danny Smith  <dannysmith@users.sourceforge.net>
4940
4941         * include/winnetwk.h (WNetGetResourceInformationW):  Correct first param.
4942         Thanks to: Rene Rivera  <grafik at users dot sf dot net>
4943
4944 2006-03-29  Christopher Faylor  <cgf@timesys.com>
4945
4946         * include/winspool.h: Protect use of PRINTER_ENUM_VALUESW with proper
4947         version conditional.
4948
4949 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4950
4951         * include/winspool.h (JOB_INFO_3): Add structure.
4952         (PROVIDOR_INFO_*{AW}): Add structure.
4953         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4954         (PRINTER_ENUM_VALUES{AW}): Add structure.
4955         (PRINTPROCESSOR_CAPS): Add structure.
4956
4957 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4958
4959         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4960         (PRINTER_INFO_7A): Correct definition.
4961
4962 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4963
4964         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4965         (DRIVER_INFO_*{AW}): Add structure.
4966         (PRINTER_INFO_*{AW}): Add structure.
4967         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4968
4969 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4970
4971         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4972         (DRIVER_*MODE): Define (DWORD type).
4973         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4974
4975 2006-03-27  Danny Smith  <dannysmith@users.sourceforge.net>
4976
4977         * include/wincon.h (GetConsoleProcessList): Declare.
4978
4979 2006-03-27  Hansres Engel  <engel@node.ch>
4980
4981         * include/mlang.h: New file.
4982
4983 2006-03-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4984
4985         * include/winbase.h (SetProcessWorkingSetSize): Corrected define.
4986
4987 2006-03-26  Hansres Engel  <engel@node.ch>
4988
4989          Add Uniscribe API for typography and for complex scripts.
4990         * include/usp10.h: New file.
4991         * lib/usp10.def: New file.
4992
4993         * include/winver.h:  Change first argument of GetFileVersionInfo[...] to const.
4994
4995         * include/imm.h (IMECHARPOSITION): Add structure.
4996         (RECONVERTSTRING): Likwise.
4997
4998         * include/commdlg.h (OPENFILENAME_SIZE_VERSION_400): Define.
4999
5000         * lib/uuid.c (CMultiLanguage): Add UUID definition.
5001         (IMLangFontLink2): Likewise.
5002         (IMultiLanguage): Likewise.
5003
5004 2006-03-18  Julien Lecomte  <julienlecomte@users.sourceforge.net>
5005
5006         * include/wincon.h  (ENABLE_*): Add more defines.
5007
5008 2006-03-18  Jan Nijtmans  <nijtmans@users.sourceforge.net>
5009
5010         * include/winnt.h (INHERITED_ACE): Define.
5011         (VALID_INHERIT_FLAGS): Correct definition.
5012
5013 2006-03-18  Peter Ã…strand  <astrand@cendio.se>
5014
5015          * lib/wtsapi32.def: New file.
5016
5017 2006-03-15  Christopher Faylor  <cgf@timesys.com>
5018
5019         * include/winbase.h (STATUS_DLL_INIT_FAILED): New define.
5020         (STATUS_DLL_INIT_FAILED_LOGOFF): Ditto.
5021
5022 2006-03-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5023
5024         * include/winspool.h (DI_MEMORYMAP_WRITE): Define (DWORD type).
5025         (FORM_USER,FORM_PRINTER): Define (DWORD type).
5026         * include/winspool.h [_WIN32_WINNT >= 0x0500]
5027         (DSPRINT_*): Define (DWORD type).
5028         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
5029
5030 2006-03-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5031
5032         * include/winspool.h (JOB_CONTROL_*,JOB_STATUS_*): Define.
5033         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
5034
5035 2006-03-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5036
5037         * include/shellapi.h [_WIN32_IE >= 0x0600]
5038         (SEE_MASK_NOZONECHECKS,SEE_MASK_FLAG_LOG_USAGE): Define on
5039         Windows XP SP1 and Windows XP respectively.
5040
5041 2006-03-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5042
5043         * include/shellapi.h (NOTIFYICONDATA_V*_SIZE): Define.
5044         Thanks to:  Daniel Atallah <datallah at users dot sf dot net>
5045         * include/shellapi.h [_WIN32_IE >= 0x0500]
5046         (NIS_*): Introduced in Version 5.0.
5047
5048 2006-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
5049
5050         * include/wingdi.h (CS_*): Correct WINVER guard on
5051         Image Color Matching colour definitions.
5052
5053 2006-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
5054
5055         * include/shlobj.h (SFGAO_ISSLOW): Define.
5056         (SFGAO_DISPLAYATTRMASK): Define in terms of preceding display
5057         attribute constants.
5058
5059 2006-03-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5060
5061         * include/wingdi.h [WINVER >= 0x0500]
5062         (GRADIENT_FILL_*,*_EMBEDED): Included in Windows 2000 and later.
5063         Thanks to: David A. Capello <dacap at users dot sf dot net>
5064
5065 2006-03-05  Paul J. Lucas  <pauljlucas@users.sourceforge.net>
5066
5067         * include/wininet.h (INTERNET_CONNECTED_INFO): Define structure.
5068         (INTERNET_STATE_*): Define flags.
5069         (INTERNET_OPTION_CONNECTED_STATE): Define constant.
5070
5071 2006-03-05  Chris Wilson  <chris+mingw@qwirx.com>
5072
5073         * include/sddl.h: New file.
5074
5075 2006-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
5076
5077         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Revert
5078         last change.
5079         Remove file level #pragma pack(push,4)/#pragma pop.
5080
5081 2006-02-19  Corinna Vinschen  <corinna@vinschen.de>
5082
5083         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Add filler
5084         value to force correct alignment.
5085
5086 2006-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
5087
5088         * include/commctrl.h (LPNMLVCACHEHINT): Correct spelling.
5089         Thanks to: Sebastian Pipping <hartwork at users dot sf dot net>
5090         (PNM_CACHEHINT): Add backward compatibilty define.
5091         (LPNM_CACHEHINT): Likewise.
5092
5093 2006-02-06  Danny Smith  <dannysmith@users.sourceforge.net>
5094
5095         * include/shlobj.h (PathResolve): Fix typo in _WIN32_WINNT guard.
5096
5097 2006-02-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5098
5099         * include/shlobj.h (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS,
5100         PRF_FIRSTDIRDEF, PRF_DONTFINDLNK): Define.
5101         * lib/shell32.def (PathResolve): Define.
5102
5103 2006-02-06  Christopher Faylor  <cgf@timesys.com>
5104
5105         * include/shlobj.h (PathResolve): Fix typo.
5106
5107 2006-02-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5108
5109         * include/shlobj.h (PathResolve): Define.
5110         (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS, PRF_FIRSTDIRDEF,
5111         PRF_DONTFINDLNK): Ditto.
5112         * lib/shell32.def (PathResolve): Define.
5113
5114 2006-02-04  Ron Lee  <ronl@users.sourceforge.net>
5115
5116         * include/winnls.h: Remove stray end ';' from preprocessor defines.
5117
5118 2006-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
5119
5120         * lib/iphlpapi.def: (NotifyAddrChange@8): Define.
5121         Reported by: Daniel Atallah  <datallah at users dot sf dot net>
5122         (NotifyRouteChange@8): Define.
5123
5124 2006-01-29  Danny Smith  <dannysmith@users.sourceforge.net>
5125
5126         * include/winsock2.h (WINSOCK_API_LINKAGE): Define.  Add to
5127         prototypes.
5128
5129 2006-01-29  Danny Smith  <dannysmith@users.sourceforge.net>
5130
5131         * include/winnt.h (FORCEINLINE): Define.
5132
5133 2006-01-26  Danny Smith  <dannysmith@users.sourceforge.net>
5134
5135         * include/winnt.h (DECLSPEC_SELECTANY): Define.
5136
5137 2006-01-26  Filip Navara  <xnavara@volny.cz>
5138
5139         * include/winnt.h (DECLSPEC_ALIGN): Define.
5140
5141 2006-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
5142
5143         * include/commctrl.h: Correct spelling of 'compatibility' in
5144         comments.
5145         * include/setupapi.h: Likewise.
5146         * include/ws2tcpip.h: Likewise.
5147
5148 2006-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
5149
5150         * include/ddk/winddk.h (KeGetCurrentKPCR): Support -masm=intel.
5151
5152 2006-01-24  Jiri Malak  <Jiri.Malak@iol.cz>
5153
5154         WATCOM compatibility changes.
5155         * include/ddk/ntddk.h (DECL_IMPORT): Define using __declspec,
5156         rather than __attribute__.
5157         (DECL_EXPORT): Likewise.
5158         * include/ddk/winddk.h (DDKAPI): Avoid using __attribute__.
5159         (DDKFASTAPI): Likewise.
5160         (DDKCDECLAPI): Likwise.
5161         (KeGetCurrentKPCR): Provide __WATCOMC__ syntax for inline code.
5162
5163 2006-01-23  Brandon Sneed  <brandon@redf.net>
5164
5165         * setupapi.def: Add all CM_* functions defined in ddk/cfgmgr32.h
5166         to exports.
5167
5168 2006-01-17  Chris Sutcliffe  <ir0nh34d@users.sf.net>
5169
5170         * include/w32api.h: Increment version to 3.6.
5171         * Makefile.in: Ditto.
5172
5173 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
5174
5175         * include/wincrypt.h (WINADVAPI): Add to prototypes of
5176         advapi32.dll functions.
5177
5178 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
5179
5180         * include/winsock2.h (struct sockaddr_storage):  Use RFC 2553
5181         names for padding size constants.
5182
5183 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
5184
5185         * include/aclapi.h (WINADVAPI): Add to prototypes.
5186         * include/winreg.h (WINADVAPI): Likewise.
5187         * include/winsvc.h (WINADVAPI): Likewise.
5188
5189 2006-01-05  Michael Gerdau  <mgd@technosis.de>
5190
5191         * include/winbase.h (WINADVAPI): Define.
5192
5193 2006-01-03  Christopher Faylor  <cgf@timesys.com>
5194
5195         * include/winuser.h (CreateWindowStation): Correctly identify first
5196         argument as constant.
5197         (CreateWindowStation@): Ditto.
5198
5199 2006-01-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5200
5201         * include/uxtheme.h [_WIN32_WINNT >= 0x0501]
5202         (TMT_*, BT_*): Add constants.
5203
5204 2005-12-31  Corinna Vinschen  <corinna@vinschen.de>
5205
5206         * include/winsock2.h: Don't define struct sockaddr_storage when
5207         building Cygwin.
5208
5209 2005-12-22  Danny Smith  <dannysmith@users.sourceforge.net>
5210
5211         * lib/ws2_32.c: New file, defining IPv6 constants.
5212         * lib/Makefile.in (SOURCES): Add ws2_32.c
5213         (EXTRA_OBJS): Add ws2_32.o.
5214
5215 2005-12-21  Michael Jung  <mjung@iss.tu-darmstadt.de>
5216
5217         * lib/user32.def (PrivateExtractIconsA@32,
5218         PrivateExtractIconsW@32): Define.
5219         * lib/shell32.c (IID_IShellLinkDataList): Add GUID.
5220
5221 2005-12-12  Christopher Faylor  <cgf@timesys.com>
5222
5223         * include/winuser.h (WINSTA_ALL_ACCESS): Define.
5224
5225 2005-12-09  Danny Smith  <dannysmith@users.sourceforge.net>
5226
5227         * lib/kernel32.def (CreateFiberEx): Correct suffix.
5228
5229 2005-12-09  Huw Davies  <hdavies@users.sourceforge.net>
5230             Danny Smith <dannysmith@users.sourceforge.net>
5231
5232         * lib/msxml-uuid.c: New file to generate UUIDs for
5233         MSXML interfaces.
5234         * lib/Makefile.in (UUID_OBJS): Add msxml-uuid.o.
5235
5236 2005-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
5237
5238         * include/winbase.h (GetDevicePowerState): Add prototype.
5239         * lib/kernel32.def (GetDevicePowerState): Correct suffix.
5240
5241 2005-12-07  Brian Gunlogson  <gmb300@users.sourceforge.net>
5242
5243         * include/winuser.h (GetClassLongPtr{AW}): Guard prototypes with _WIN64.
5244         Define as macro if !_WIN64.
5245         (SetClassLongPtr{AW}): Likewise.
5246         (GCLP_*): Add GetClassLongPtr defines.
5247         * lib/user32.def (GetClassLongPtr{AW}): Remove stubs.
5248         (SetClassLongPtr{AW}): Likewise.
5249
5250 2005-11-18  Brian Gunlogson  <gmb300@users.sourceforge.net>
5251
5252         * include/winuser.h (GetClassLongPtr{AW}): Add prototypes.
5253         (SetClassLongPtr{AW}): Likewise.
5254         (GCLP_*): Add GetClassLongPtr defines.
5255         * lib/user32.def (GetClassLongPtr{AW}): Add stubs.
5256         (SetClassLongPtr{AW}): Likewise.
5257
5258 2005-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
5259
5260         * include/commdlg.h (OPENFILENAMEW): Add members for
5261         _WIN32_WINNT >= 0x0500.
5262         Thanks to Ricardo Dalcorsso Fodra.
5263         (OPENFILENAMEA): Modify whitespace. Ansify comment.
5264
5265 2005-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
5266
5267         * include/wingdi.h (GetICMProfileA): Correct prototype.
5268         (GetICMProfileW): Likewise.
5269         Thanks to: Paul J Lucas
5270
5271 2005-11-04  Michael Jung  <mjung@iss.tu-darmstadt.de>
5272
5273         * lib/shell32.c (CLSID_ShellFSFolder): Add GUID.
5274
5275 2005-11-03  Danny Smith  <dannysmith@users.sourceforge.net>
5276
5277         * lib/crypt32.def (CertOIDToAlgId, CertAlgIDToOID, CryptProtectData,
5278         CryptUnprotectData, CryptDecodeObjectEx, CryptEncodeObjectEx,
5279         CryptRegisterOIDFunction, CryptUnregisterOIDFunction): Add stubs.
5280         Thanks to: F Richter  <res2002 at users dot sourceforge dot net>
5281
5282 2005-10-29  Chris Sutcliffe  <ir0nh34d@users.sf.net>
5283
5284         * include/objbase.h: Fix typo.
5285         * include/w32api.h: Increment version to 3.5.
5286         * Makefile.in: Ditto.
5287
5288 2005-10-27  Chris Sutcliffe  <ir0nh34d@users.sf.net>
5289
5290         * include/w32api.h: Increment version to 3.4.
5291         * Makefile.in: Ditto.
5292
5293 2005-10-12  Danny Smith  <dannysmith@users.sourceforge.net>
5294
5295         * include/winbase.h (GetProcessId): Remove duplicate declaration.
5296         Use _WIN32_WINNT >= 0x0501 guard.
5297
5298 2005-10-11  Christopher Faylor  <cgf@timesys.com>
5299
5300         * include/winbase.h (GetProcessId): Declare.
5301
5302 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5303
5304         * lib/ddk/newdev.def: Added.
5305         Thanks to: Stephan Meyer <ste_meyer at users dot sourceforge dot net>
5306
5307 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5308
5309         * include/commdlg.h (OPENFILENAME): Added WINNT >= 0x0500
5310         component.
5311         Thanks to: Gennady Feldman <gena01 at users dot sourceforge dot net>
5312
5313 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5314
5315         * lib/shell32.def (SHILCreateFromPath): Add stub.
5316         Thanks to: Michael Jung <mjung at iss dot tu-darmstadt dot de>
5317
5318 2005-09-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5319
5320         * include/winbase.h (RegisterWaitForSingleObject,
5321         RegisterWaitForSingleObjectEx): Define.
5322         * lib/kernel32.def (RegisterWaitForSingleObjectEx@20): Define.
5323         (RegisterWaitForSingleObject@16): Changed to
5324         RegisterWaitForSingleObject@24.
5325         Thanks to: Brandon Sneed <nivenh at users dot sourceforge dot net>
5326
5327 2005-09-19  Danny Smith  <dannysmith@users.sourceforge.net>
5328
5329         * include/winsock2.h (SO_EXCLUSIVEADDRUSE): Define.
5330         Thanks to: Gisle Vanem  <giva at bgnett dot no>
5331
5332 2005-09-08  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5333
5334         * include/reason.h [_WIN32_WINNT >= 0x0501]
5335         (SHTDN_REASON_*): New file.
5336         * include/objbase.h: Avoid double header guard.
5337
5338 2005-08-17  Michael Jung  <mjung@iss.tu-darmstadt.de>
5339
5340         * lib/shell32.c (CLSID_RecycleBin, CLSID_ControlPanel,
5341         CLSID_MyComputer,CLSID_Internet, CLSID_NetworkPlaces,
5342         CLSID_MyDocuments, CLSID_FolderShortcut): Add GUIDs.
5343
5344 2005-08-17  Martin Fuchs  <martin-fuchs@gmx.net>
5345
5346         * include/shlobj.h (IContextMenu3): Define.
5347         * include/shlguid.h (IID_IContextMenu3): Declare.
5348         * lib/shell32.c (IID_IContextMenu3): Define.
5349
5350 2005-08-17  Martin Fuchs  <martin-fuchs@gmx.net>
5351
5352         * include/shlobj.h (SHFormatDrive): Declaration of function
5353         and associated constants.
5354
5355 2005-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
5356
5357         * include/ddk/hidsdi.h:  New file.
5358         * lib/ddk/hid.def: Uncomment symbols and add stdcall suffix for
5359         functions declared in hidsdi.h.
5360         Thanks to:  Alex J Lennon  <ajlennon at organixconsulting dot com>
5361
5362 2005-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
5363
5364         * lib/imm32.def (ImmDisableIME): Add stub.
5365         Thanks to: "kidmin"  <kidmin at users dot sourceforge dot net>
5366
5367 2005-08-10  Chris Sutcliffe  <ir0nh34d@users.sf.net>
5368
5369         * include/w32api.h: Increment version to 3.3.
5370         * Makefile.in: Ditto.
5371
5372 2005-07-28  Earnie Boyd  <earnie@users.sf.net>
5373
5374         * include/winnt.h (SUBLANG_PORTUGUESE, SUBLANG_PORTUGUESE_BRAZILIAN):
5375         Correct their values.
5376         Thanks to: Daniel K. O. <danielosmari at users dont sf dot net>
5377
5378 2005-07-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5379
5380         * include/winuser.h (HSHELL_RUDEAPPACTIVATED): Define.
5381
5382 2005-07-20  Danny Smith  <dannysmith@users.sourceforge.net>
5383
5384         * include/wingdi.h (TT_PRIM_CSPLINE): Define.
5385         Thanks to: Bob Jamison <ishmal at users dot sourceforge dot net>
5386
5387 2005-07-20  Danny Smith  <dannysmith@users.sourceforge.net>
5388
5389         * include/richedit.h (SETTEXTEX): Define structure and
5390         associated constants.
5391         (GT_SELECTION): Define GETTEXTEX flag constant.
5392
5393 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
5394
5395         * include/wingdi.h (SYSPAL_NOSTATIC256): Define.
5396
5397 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
5398
5399         * include/wingdi.h (WINGDIAPI): Define to DECLSPEC_DLLIMPORT
5400         if __W32API_USE_DLLIMPORT__.   Use throughout to qualify
5401         prototypes.
5402
5403 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
5404
5405         * include/commctrl.h (RBBS_USECHEVRON): Define.
5406         (RBBS_*): Use hex notation, group together.
5407
5408 2005-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
5409
5410         * lib/kernel32.def (GetUserGeoID): Correct suffix.
5411         Thanks to: "bernd23" <bernd23 at users dot sourceforge dot net>
5412
5413 2005-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
5414
5415         * include/commctrl.h (TreeView_SetItemState): Initilise
5416         _tvi.hItem.
5417         Thanks to:  Joseph Remes <jremes at users dot sourceforge dot net>
5418
5419 2005-07-18  Mattia Barbon  <mbarbon@users.sourceforge.net>
5420
5421         * include/commctrl.h (NMLVFINDITEM): Add structure.
5422
5423 2005-07-18  Michael Gerdau  <mgdde@users.sourceforge.net>
5424
5425         * include/wininet.h (WININET_API_FLAG_*): Add defines.
5426
5427 2005-07-18  Daniel Atallah  <datallah@users.sourceforge.net>
5428
5429         * include/winnt.h (VER_SET_CONDITION): Define.
5430
5431 2005-07-18  Michael Gerdau  <mgdde@users.sourceforge.net>
5432
5433         * include/wincon.h (AttachConsole): Correct _WIN32_WINNT guard.
5434         (ATTACH_PARENT_PROCESS): Define.
5435         (CONSOLE_WINDOWED_MODE): Correct definition to match MSDN
5436         documentation.
5437
5438 2005-07-17  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5439
5440         * include/winbase.h (QueueUserWorkItem): Add prototype.
5441
5442 2005-07-13  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5443
5444         * include/wingdi.h (SHADEBLENDCAPS, SB_NONE, SB_CONST_ALPHA,
5445         SB_PIXEL_ALPHA, SB_PREMULT_ALPHA, SB_GRAD_RECT, SB_GRAD_TRI,
5446         COLORMGMTCAPS, CM_NONE, CM_DEVICE_ICM, CM_GAMMA_RAMP,
5447         CM_CMYK_COLOR): Define.
5448
5449 2005-06-19  Danny Smith  <dannysmith@users.sourceforge.net>
5450
5451         * include/winldap.h (ldap_simple_bindW, ldap_simple_bind_sW,
5452         ldap_bindW, ldap_bind_sW): Change PCHAR arg to PWCHAR.
5453         Thanks to: Christian  <chhd at users dot sf dot net>
5454
5455 2005-06-18  Danny Smith  <dannysmith@users.sourceforge.net>
5456
5457         * include/richedit.h (GETTEXTEX): Correct name of lpUsedDefChar
5458         field.
5459         Thanks to: Saulius Menkevicius  <bobas at users dot sf dot net>
5460
5461 2005-06-18  Danny Smith  <dannysmith@users.sourceforge.net>
5462
5463         * include/winbase.h (GlobalDiscard): Define as macro.
5464         Thanks to: David Golub  <david_golub  at users dot sf dot net>
5465
5466 2005-05-13  Corinna Vinschen  <corinna@vinschen.de>
5467
5468         * include/winnetwk.h (WNetGetResourceParentA): Add missing declaration.
5469         (WNetGetResourceParentW): Ditto.
5470         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Define.
5471         (FILE_ID_BOTH_DIRECTORY_INFORMATION): Define.
5472
5473 2005-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
5474
5475         * include/wininet.h (FtpGetFileSize): Add prototype.
5476         (FtpCommand[AW]): Correct prototypes.
5477         Reported by: <siger at users dot sf dot net>
5478
5479 2005-04-25  Danny Smith  <dannysmith@users.sourceforge.net>
5480
5481         * include/vfw.h (capCreateCaptureWindow[AW]): Add prototypes.
5482         (capGetDriverDescription[AW]): Likewise.
5483
5484 2005-04-03  Corinna Vinschen  <corinna@vinschen.de>
5485
5486         * include/winnt.h (SE_UNDOCK_NAME TEXT): Define.
5487         (SE_MANAGE_VOLUME_NAME TEXT): Ditto.
5488         (SE_IMPERSONATE_NAME TEXT): Ditto.
5489         (SE_ENABLE_DELEGATION_NAME TEXT): Ditto.
5490         (SE_SYNC_AGENT_NAME TEXT): Ditto.
5491
5492 2005-03-16  Christopher Faylor  <cgf@timesys.com>
5493
5494         * include/winnt.h (SYSTEM_LUID): Fix definitition invalidated by below
5495         change.
5496
5497 2005-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
5498
5499         * include/winnt.h (_LUID): Add structure. Correct LUID typedef.
5500         Thanks to:
5501         Paul-Christiaan Spruijtenburg <wakarimasu at users dot sf dot net>
5502
5503 2005-03-07  Danny Smith  <dannysmith@users.sourceforge.net>
5504
5505         * include/ws2tcpip.h (getaddrinfo, freeaddrinfo, getnameinfo):
5506         Guard with _WIN32_WINNT >= 0x0501. Add FIXME comment.
5507         (gai_strerror[AW]): Put into #if 0 block.
5508
5509 2005-03-07  Danny Smith  <dannysmith@users.sourceforge.net>
5510
5511         * include/basetyps.h (__int16): Correct define.
5512
5513 2005-02-10  Jiri Malak  <Jiri.Malak@iol.cz>
5514             Danny Smith  <dannysmith@users.sourceforge.net>
5515
5516         * lib/directx/dinput_private.h (ATTRIBUTE_TEXT_SECTION): New
5517         define for Open Watcom portability.
5518         * lib/directx/(dinput_joy.c, dinput_joy2.c, dinput_kbd.c,
5519         dinput_mouse.c, dinput_mouse2.c): Use new macro in definition
5520         of local c_rgodfDI* objects. Replace .rdata section attribute
5521         with 'const' keyword in definition of global c_dfDI* objects.
5522
5523 2005-02-07  Danny Smith  <dannysmith@users.sourceforge.net>
5524
5525         * include/winioctl.h (IOCTL_VOLUME_BASE,
5526         IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS, IOCTL_VOLUME_IS_CLUSTERED):
5527         Copy defines from include/ddk/ntdddvol.h.
5528         Bug reported to Debian by Anand Kumria  <wildfire@progsoc.org>
5529
5530 2005-01-27  Oliver Stoeneberg  <oliverst@online.de>
5531
5532         * include/winbase.h (PWIN32_FIND_DATA): Add typedef.
5533
5534 2005-01-26  Danny Smith  <dannysmith@users.sourceforge.net>
5535
5536         * include/winuser.h (SW_SMOOTHSCROLL): Add define.
5537         Reported by: Christian Ehrlicher  <chehrlic@users.sf.net>
5538
5539 2005-01-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5540
5541         * include/commdlg.h (OFN_DONTADDTORECENT): Added definition.
5542
5543 2005-01-18  Danny Smith  <dannysmith@users.sourceforge.net>
5544
5545         * lib/user32.def (MonitorFromPoint): Correct suffix.
5546
5547 2005-01-13  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5548
5549         * include/wininet.h (InternetCheckConnectionA,
5550         InternetCheckConnectionW) Add prototypes.
5551         (INTERNET_RAS_INSTALLED, INTERNET_CONNECTION_OFFLINE,
5552         INTERNET_CONNECTION_CONFIGURED): Add defines.
5553
5554 2005-01-07  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5555
5556         * include/commctrl.h (ComboBox_SetMinVisible,
5557         ComboBox_GetMinVisible): Added Macros.
5558         * include/winuser.h (CB_SETMINVISIBLE, CB_GETMINVISIBLE):
5559         Added definitions.
5560
5561 2005-01-02  Jiri Malak  <Jiri.Malak@geac.cz>
5562
5563         * include/winnt.h (GetCurrentFiber, GetFiberData): Make inline
5564         assembly code conditional on _X86_.
5565
5566 2005-01-02  Earnie Boyd  <earnie@users.sf.net>
5567
5568         * include/w32api.h: Increment version to 3.2.
5569         * Makefile.in: Ditto.
5570         * include/afxres.h: Remove the \r from the line ending.
5571         * include/errorrep.h: Ditto.
5572         * include/shldisp.h: Ditto.
5573         * include/tschema.h: Ditto.
5574         * lib/dhcpcsvc.def: Ditto.
5575         * lib/uxtheme.def: Ditto.
5576         * lib/wldap32.def: Ditto.
5577
5578 2005-01-01  Danny Smith  <dannysmith@users.sourceforge.net>
5579
5580         * include/winerror.h (ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY):
5581         Correct typo.
5582         Thanks to: Aidan France  <aidan1@users.sourceforge.net>
5583
5584 2004-12-29  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5585
5586         *include/winuser.h (MNS_*, WM_MENUCOMMAND,
5587         WM_MENUGETOBJECT, WM_MENUDRAG, WM_NCMOUSEHOVER,
5588         WM_NCMOUSELEAVE, WM_UNINITMENUPOPUP,
5589         SPI_GETFOREGROUNDLOCKTIMEOUT,
5590         SPI_SETFOREGROUNDLOCKTIMEOUT): Added definitions.
5591         *include/imm.h (WM_IME_REQUEST): Added definition.
5592         *include/shlobj.h (SLGP_RAWPATH,
5593         SLGP_UNCPRIORITY): Added definition.
5594
5595 2004-12-28  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5596
5597         *include/winuser.h (HSHELL_FLASH): Added definition.
5598
5599 2004-12-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
5600
5601         * include/shldisp.h (IAutoComplete): Added interface definiton.
5602         * include/shldisp.h (IAutoComplete2): Added interface definiton.
5603         * include/shldisp.h (ACO_AUTOSUGGEST): Added definition.
5604         * include/shlobj.h (IObjMgr): Added interface definiton.
5605         * lib/shell32.c (CLSID_AutoComplete, IID_AutoComplete,
5606         IID_AutoComplete2, CLSID_ACLMulti, IID_IObjMgr,
5607         CLSID_ACListISF, IID_IACList): Added GUIDs.
5608         * include/shlguid.h (CLSID_AutoComplete, IID_AutoComplete,
5609         IID_AutoComplete2, CLSID_ACLMulti, IID_IObjMgr,
5610         CLSID_ACListISF, IID_IACList): Added GUIDs.
5611
5612 2004-12-23  Danny Smith  <dannysmith@users.sourceforge.net>
5613
5614         * include/commctrl.h (CDRF_NOTIFYSUBITEMDRAW): Add define.
5615         Thanks to: Chris Sutcliffe  <ironhead@walled.net>
5616         (CDRF_*): Use hex notation for constants.
5617
5618 2004-12-08  Danny Smith  <dannysmith@users.sourceforge.net>
5619
5620         * include/sqlext.h (SQL_INTERVAL_*): Correct macros.
5621         Reported by Eric Sharkey <sharkey at netrics dot com>
5622
5623 2004-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
5624
5625         * include/winnt.h (TOKEN_INFORMATION_CLASS): Add
5626         TokenGroupsAndPrivileges, TokenSessionReference,
5627         TokenSandBoxInert, TokenAuditPolicy, TokenOrigin.
5628         Reformat.
5629         (SID_NAME_USE): Add SidTypeComputer.  Reformat.
5630         Thanks to Gabriel Linder <mingwlinder@users.sourceforge.net>
5631
5632 2004-12-02  Danny Smith  <dannysmith@users.sourceforge.net>
5633
5634         * lib/comctl32.def (ImageList_Copy, ImageList_DrawIndirect,
5635         ImageList_Duplicate): Add stubs.
5636
5637 2004-12-02  Danny Smith  <dannysmith@users.sourceforge.net>
5638
5639         * lib/directx/strmiids.c (MEDIASUBTYPE_YV12): Correct GUID.
5640         Thanks to "Pete" <pross@xvid.org>
5641
5642 2004-11-21 Benoit Blanchon  <bblanchon@users.sourceforge.net>
5643
5644         * include/wingdi.h (AC_SRC_ALPHA, AC_SRC_NO_ALPHA,
5645         AC_DST_NO_ALPHA, ...): Add defines.
5646         * include/winuser.h (ULW_COLORKEY,ULW_ALPHA,
5647         ULW_OPAQUE): Add defines.
5648
5649 2004-11-21  Danny Smith  <dannysmith@users.sourceforge.net>
5650
5651         * include/winnt.h (VerSetConditionMask): Correct typo in _WIN32_WINNT
5652         guard.
5653         * lib/kernel32.def (VerSetConditionMask): Correct stdcall
5654         suffix.
5655         * lib/ddk/ntoskrnl.def (VerSetConditionMask): Likewise.
5656
5657 2004-11-20  Danny Smith  <dannysmith@users.sourceforge.net>
5658
5659         * include/winbase.h (PPROCESS_INFORMATION): Add typedef.
5660         (CreateProcessWithLogonW): Declare.
5661         (LOGON_WITH_PROFILE, LOGON_NETCREDENTIALS_ONLY): Add defines.
5662         Thanks to: "jkmaki"  <jkmaki@users.sourceforge.net>
5663
5664 2004-11-19  Danny Smith  <dannysmith@users.sourceforge.net>
5665
5666         * include/sspi.h (SecPkgContext_Sizes): Fix typo.
5667         Thanks to: David Leonard  <leonard@users.sourceforge.net>
5668
5669 2004-11-19  Danny Smith  <dannysmith@users.sourceforge.net>
5670
5671         * include/sspi.h (SecPkgCredentials_Names[AW]): Correct name.
5672         Thanks to: David Leonard  <leonard@users.sourceforge.net>
5673
5674 2004-11-19  Magnus Olsen  <greatlord@users.sourceforge.net>
5675
5676         * include/winuser.h (MSLLHOOKSTRUCT): Add structure.
5677
5678 2004-11-19  Magnus Olsen  <greatlord@users.sourceforge.net>
5679
5680         * include/winuser.h (LLKHF_EXTENDED, LLKHF_INJECTED, LLKHF_UP):
5681         Add defines.
5682         (LLKHF_ALTDOWN): Define based on KF_ALTDOWN.
5683
5684 2004-11-19  Benoit Blanchon  <bblanchon@users.sourceforge.net>
5685
5686         * include/shellapi.h (NIF_GUID): Add another define.
5687
5688 2004-11-18  Earnie Boyd  <earnie@users.sf.net>
5689
5690         * include/wincon.h (AttachConsole): Correct the _WIN32_WINNT filter.
5691         Changed it twice due to inconsistent MSDN documentation.
5692         * include/w32api.h (Windows95, etc. and IE3, etc.): Add definitions.
5693
5694 2004-11-13  Danny Smith  <dannysmith@users.sourceforge.net>
5695
5696         * include/shlobj.h (SHGFP_TYPE): Add enum.
5697
5698 2004-11-12  Loïc Guilloux (glx@users.sourceforge.net>
5699
5700         * include/winuser.h (WM_THEMECHANGED): Add define.
5701
5702 2004-11-11  Danny Smith  <dannysmith@users.sourceforge.net>
5703
5704         * include/ddk/winddk.h (ExAllocateFromPagedLookasideList,
5705         ExFreeToPagedLookasideList): Guard inline versions with
5706         (__USE_NTOSKRNL__) && (_WIN32_WINNT >= 0x0501). Declare as
5707         external functions for earlier _WIN32_WINNT.
5708
5709 2004-11-11  Danny Smith  <dannysmith@users.sourceforge.net>
5710
5711         * include/ras.h (RASCONN[AW]): Remove dwSessionId field.
5712
5713 2004-11-09  Danny Smith  <dannysmith@users.sourceforge.net>
5714
5715         * include/winnls.h (WINBASEAPI): Define as DECLSPEC_IMPORT
5716         if  undefined and __W32API_USE_DLLIMPORT__.
5717         Add WINBASEAPI token to prototypes, throughout.
5718
5719 2004-11-08  Danny Smith  <dannysmith@users.sourceforge.net>
5720
5721         * include/winnt.h (GetCurrentFiber): Support -masm=intel.
5722         (GetFiberData): Likewise.
5723         (NtCurrentTeb): Likewise.
5724
5725 2004-11-04  Danny Smith  <dannysmith@users.sourceforge.net>
5726
5727         * include/shellapi.h (NIF_INFO): Add define.
5728         (NIIF_*) Add defines..
5729         Thanks to: Benoit Blanchon <bblanchon@users.sourceforge.net>
5730         (NIF_*): Convert constants to hex.
5731
5732 2004-11-02  Danny Smith  <dannysmith@users.sourceforge.net>
5733
5734         * include/wingdi.h (GetFontUnicodeRanges,GetGlyphIndicesA,
5735         GetGlyphIndicesW): Declare.
5736         (GGI_MARK_NONEXISTING_GLYPHS): Define
5737         * lib/gdi32.def (GetFontUnicodeRanges,GetGlyphIndicesA,
5738         GetGlyphIndicesW): Add stubs.
5739
5740 2004-10-24  Dan Aloni  <da-x@colinux.org>
5741
5742         * include/ddk/ntapi.h (NtQueryFullAttributesFile,
5743         ZwQueryFullAttributesFile): Declare.
5744         * include/ddk/ntapi.h (RtlDosPathNameToNtPathName_U):
5745         Declare.
5746         lib/ntoskrnl.def (ZwQueryDirectoryFile, ZwQueryFullAttributesFile.
5747         ZwQueryVolumeInformationFile): Add stubs.
5748
5749 2004-10-18  Danny Smith  <dannysmith@users.sourceforge.net>
5750
5751         * include/wsahelp.h (WINSOCK_MAPPING, WSHGetWinsockMapping,
5752         PWSH_GET_WINSOCK_MAPPING): Don't define if __OBJC__.
5753
5754 2004-10-15  Robert Wruck  <wruck@tweerlei.de>
5755             Danny Smith  <dannysmith@users.sourceforge.net>
5756
5757         * include/winbase.h (InitializeSListHead, Interlocked*):
5758         Guard with !__USE_NTOSKRNL__.
5759
5760         * include/ddk/ntddk.h (__USE_NTOSKRNL__): Define.
5761         * include/ddk/winddk.h (InitializeSListHead, Interlocked*):
5762         Guard with  __USE_NTOSKRNL__.
5763         (ExInterlockedPopEntrySList, ExInterlockedPushEntrySList):
5764         Add prototypes.  Guard macro definition with __USE_NTOSKRNL__
5765         && _WIN32_WINNT >= 0x0501
5766         (ExAllocateFromNPagedLookasideList, ExAllocateFromPagedLookasideList,
5767         ExFreeToNPagedLookasideList, ExFreeToPagedLookasideList):
5768         Replace calts to InterlockedPopEntrySList, InterlockedPushEntrySList
5769         with ExInterlockedPopEntrySList, ExInterlockedPushEntrySList.
5770
5771         * lib/ddk/ntosknl.def (ExInterlockedPopEntrySList,
5772         ExInterlockedPushEntrySList)  Add stubs with fastcall decoration.
5773         (ExDesktopObjectType, ExEventObjectType, ExSemaphoreObjectType,
5774         ExWindowStationObjectType, IoAdapterObjectType,
5775         IoDeviceHandlerObjectSize, IoDeviceHandlerObjectType,
5776         IoDeviceObjectType, IoDriverObjectType, IoFileObjectType,
5777         LpcPortObjectType, MmSectionObjectType, SeTokenObjectType):
5778         Uncomment stubs.
5779
5780 2004-10-11  Robert Wruck  <wruck@tweerlei.de>
5781
5782         * include/ddk/winddk.h (IoReleaseRemoveLockAndWait): Fix
5783         definition
5784         (IoReleaseRemoveLock): Add definition.
5785
5786 2004-10-10  Danny Smith  <dannysmith@users.sourceforge.net>
5787
5788         * include/ddk/winnt4.h (Exi386InterlockedDecrementLong,
5789         Exi386InterlockedExchangeUlong, Exi386InterlockedIncrementLong);
5790         Add prototypes.
5791         * include/winddk.h (ExInterlockedAddUlong,
5792         ExInterlockedInsertHeadList, ExInterlockedInsertTailList,
5793         ExInterlockedRemoveHeadList, ExInterlockedPopEntryList,
5794         ExInterlockedPushEntryList): Change calling convention to
5795         DDKAPI.
5796         (ExfInterlockedAddUlong,ExInterlockedInsertHeadList,
5797         ExInterlockedInsertTailList, ExInterlockedRemoveHeadList,
5798         ExInterlockedPopEntryList, ExInterlockedPushEntryList):
5799         Add prototypes for DDKFASTAPI versions.
5800         Thanks to Vadim Yegor0v <zg at bmg dot lv> for report.
5801         * lib/ntoskrnl.def (ExInterlockedAddUlong,
5802         ExInterlockedInsertHeadList, ExInterlockedInsertTailList,
5803         ExInterlockedRemoveHeadList, ExInterlockedPopEntryList,
5804         ExInterlockedPushEntryList): Remove lead '@' from stubs.
5805         (ExfInterlockedAddUlong,ExfInterlockedInsertHeadList,
5806         ExfInterlockedInsertTailList, ExfInterlockedRemoveHeadList,
5807         ExfInterlockedPopEntryList, ExfInterlockedPushEntryList):
5808         Add fastcall stubs.
5809         (Exi386InterlockedDecrementLong, Exi386InterlockedExchangeUlong,
5810         Exi386InterlockedIncrementLong); Add stdcall stubs.
5811
5812 2004-09-30  Danny Smith  <dannysmith@users.sourceforge.net>
5813
5814         * include/winbase.h (WINBASEAPI): Define as DECLSPEC_IMPORT only
5815          if __W32API_USE_DLLIMPORT__ is defined.
5816         * include/winuser.h (WINUSERAPI): Likewise.
5817
5818 2004-09-29  Filip Navara  <xnavara@volny.cz>
5819
5820         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
5821         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, mcd.h, miniport.h,
5822         mountdev.h, mountmgr.h, ndis.h, ndistapi.h, ndiswan.h, netpnp.h,
5823         newdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h, ntddcdvd.h,
5824         ntddchgr.h, ntdddisk.h, ntddkbd.h, ntddmou.h, ntddpar.h, ntddpcm.h,
5825         ntddscsi.h, ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h,
5826         ntddvdeo.h, ntddvol.h, ntpoapi.h, parallel.h, pfhook.h, poclass.h,
5827         scsi.h, scsiscan.h, smbus.h, srb.h, storport.h, tdiinfo.h,
5828         tdikrnl.h, tvout.h, upssvc.h, usb.h, usb100.h, usbdi.h, usbioctl.h,
5829         usbiodef.h, usbscan.h, usbuser.h, videoagp.h, winddi.h, winddk.h,
5830         winnt4.h, ws2san.h): Fixed packing.
5831         * include/ddk/atm.h (ATM_TRAFFIC_DESCRIPTOR_IE): Fixed declaration.
5832         * include/ddk/hidclass.h (HID_INTERFACE_HIDPARSE,
5833         HID_INTERFACE_NOTIFY_PNP): Likewise.
5834         * include/ddk/ndis.h (NDIS_DMA_BLOCK, CO_FLOW_PARAMETERS): Likewise.
5835         (NdisQueryPacketLength): Added macro. Thanks to Art Yerkes
5836         <ayerkes@speakeasy.net>.
5837         * include/ddk/usb100.h (USB_CONFIGURATION_DESCRIPTOR): Fixed
5838         declaration.
5839         * include/ddk/winddi.h (PATHDATA, GLYPHPOS): Likewise.
5840         * include/ddk/winddk.h (PDRIVER_CONTROL, PDRIVER_LIST_CONTROL,
5841         PDRIVER_ADD_DEVICE, PIO_COMPLETION_ROUTINE, PDRIVER_CANCEL,
5842         PKDEFERRED_ROUTINE, PDRIVER_DISPATCH, PIO_DPC_ROUTINE,
5843         PMM_DLL_INITIALIZE, PMM_DLL_UNLOAD, PDRIVER_ENTRY,
5844         PDRIVER_INITIALIZE, PKSERVICE_ROUTINE, PIO_TIMER_ROUTINE,
5845         PDRIVER_REINITIALIZE, PDRIVER_STARTIO, PKSYNCHRONIZE_ROUTINE,
5846         PDRIVER_UNLOAD, DRIVER_OBJECT): Fixed callback declarations.
5847         (struct FILE_BASIC_INFORMATION): Renamed to _FILE_BASIC_INFORMATION.
5848         (SYNCH_LEVEL): Added definition.
5849         (KPCR, KPCR_TIB): Fixed declaration.
5850         (Interlocked[Push/Pop]EntrySList): Declare only if winbase.h isn't
5851         included and _WIN32_WINNT >= 0x0501.
5852         (RtlEqualLuid): Fixed macro definition.
5853         (KfLowerIrql, KfRaiseIrql): Declare and use instead of KeLowerIrql and
5854         KeRaiseIrql on i386 architectures.
5855
5856 2004-09-06  Hosaka Yuji  <hos@tamanegi.org>
5857
5858         * include/mshtml.h (IHTMLDocument2): Correct get_selection
5859         declaration.
5860         (IHTMLSelectionObject): Correct get_type declaration.
5861         (IHTMLFramesCollection2, IHTMLWindow2, IHTMLFrameBase,
5862         IHTMLFrameBase2, IHTMLFrameBase3, IHTMLBodyElement,
5863         IHTMLBodyElement2): Add interfaces.
5864         (LPHTMLIMAGEELEMENTFACTORY, LPHTMLEVENTOBJ, LPHTMLSCREEN,
5865         LPHTMLOPTIONELEMENTFACTORY, LPOMHISTORY, LPOMNAVIGATOR): Add
5866         typedefs.
5867         * lib/mshtml-uuid.c (IID_IHTMLFrameBase2, IID_IHTMLFrameBase3):
5868         Add IIDs.
5869
5870 2004-09-05  Earnie Boyd  <earnie@users.sf.net>
5871
5872         * include/w32api.h: Increment version to 3.1.
5873         * Makefile.in: Ditto.
5874
5875 2004-09-05  Hosaka Yuji  <hos@tamanegi.org>
5876
5877         * include/winuser.h (MonitorFromPoint, MonitorFromRect,
5878         MonitorFromWindow): Add prototypes.
5879         * lib/user32.def (MonitorFromPoint, MonitorFromRect,
5880         MonitorFromWindowMonitorFromWindow): Add stubs.
5881         * include/shellapi.h (DuplicateIcon): Add prototype.
5882
5883 2004-09-05   Danny Smith  <dannysmith@users.sourceforge.net>
5884
5885         * include/winuser.h (WINUSERAPI): New define.
5886         Use it to mark user32.dll imports, throughout.
5887
5888 2004-09-05  Hosaka Yuji  <hos@tamanegi.org>
5889
5890         * lib/ddk/hid.def (HidD_FlushQueue, HidD_FreePreparsedData,
5891         HidD_GetAttributes, HidD_GetConfiguration, HidD_GetFeature,
5892         HidD_GetHidGuid, HidD_GetIndexedString, HidD_GetInputReport,
5893         HidD_GetManufacturerString, HidD_GetMsGenreDescriptor,
5894         HidD_GetNumInputBuffers, HidD_GetPhysicalDescriptor,
5895         HidD_GetPreparsedData, HidD_GetProductString,
5896         HidD_GetSerialNumberString, HidD_SetConfiguration,
5897         HidD_SetFeature, HidD_SetNumInputBuffers, HidD_SetOutputReport,
5898         HidP_GetButtonCaps, HidP_GetValueCaps): Add exports.
5899
5900 2004-08-25  Lars Rune Nøstdal  <daysleper@users.sourceforge.net>
5901
5902         * include/wincon.h (CONSOLE_FULLSCREEN_MODE, CONSOLE_WINDOWED_MODE):
5903         Add XP defines.
5904         (PCOORD): Add typedef.
5905         (GetConsoleDisplayMode, SetConsoleDisplayMode): Add prototypes.
5906
5907 2004-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
5908
5909         * include/winldap.h: Don't check value of UNICODE.
5910         Thanks to: "Jean-Do"  <spab@users.sourceforge.net>
5911
5912 2004-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
5913
5914         * include/winbase.h (WINBASEAPI): Guard with __INSIDE_CYGWIN__.
5915
5916 2004-08-24  Sam Robb  <samrobb@users.sourceforge.net>
5917
5918         * include/winbase.h (GetFileSizeEx): Add _WIN32_WINNT >= 0x0500
5919         guard.
5920
5921 2004-08-24   Danny Smith  <dannysmith@users.sourceforge.net>
5922
5923         * include/winbase.h: Add WINBASEAPI token to prototypes, throughout.
5924
5925 2004-08-15  Ken Fitlike  <kenfitlike@users.sourceforge.net>
5926
5927         * include/commctrl.h (WC_TREEVIEWA): Remove parenthenses.
5928
5929 2004-08-10  Sebastian Nowak  <snowak1@users.sourceforge.net>
5930
5931         * include/ws2spi.h (LPWSPSELECT): Correct typedef.
5932
5933 2004-08-10   Danny Smith  <dannysmith@users.sourceforge.net>
5934
5935         * include/wincrypt.h: Correct _WIN32_WINNT typo.
5936
5937 2004-08-10  Ed Schaller  <schallee@darkmist.net>
5938
5939         * include/wincrypt.h (MS_ENH_RSA_AES_PROV_A, MS_ENH_RSA_AES_PROV_W)
5940         (ALG_SID_AES_128, ALG_SID_AES_192, ALG_SID_AES_256, ALG_SID_AES 17)
5941         (CALG_AES_128, CALG_AES_192, CALG_AES_256, CALG_AES,PROV_RSA_AES):
5942         Add defines.
5943         (CALG_SHA1): Add define.
5944         (HP_HMAC_INFO): Add define.
5945         (HMAC_INFO): Add struct.
5946         (BLOBHEADER): Add typedef.
5947
5948 2004-07-26  Hartmut Honisch  <hhonisch@users.sourceforge.net>
5949
5950         * include/commctrl.h (TreeView_SetItemState): Define macro.
5951
5952 2004-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
5953
5954         * include/wingdi.h (CMYK): Correct macro. Group CMYK/RGB
5955         macros together.
5956
5957 2004-07-24  Brodie Thiesfield  <brofield@users.sourceforge.net>
5958
5959         * include/shlobj.h (FILEDESCRIPTOR): Unicode it.
5960         (FILEGROUPDESCRIPTOR): LIkewise.
5961
5962 2004-07-06  Corinna Vinschen  <corinna@vinschen.de>
5963
5964         * winbase.h (IsWow64Process): Add missing WINAPI qualifier.
5965
5966 2004-06-16  Danny Smith  <dannysmith@users.sourceforge.net>
5967
5968         * include/winnt.h (IMAGE_ORDINAL_FLAG): Map to ...
5969         (IMAGE_ORDINAL_FLAG{32,64}: New defines.
5970         (IMAGE_SNAP_BY_ORDINAL): Map to ...
5971         (IMAGE_SNAP_BY_ORDINAL{32,64}: New defines.
5972         (IMAGE_ORDINAL): Map to ...
5973         (IMAGE_ORDINAL{32,64}: New defines.
5974         (IMAGE_THUNK_DATA):  Map to ...
5975         (IMAGE_THUNK_DATA{32,64}: New structures.
5976         (IMAGE_THUNK_DATA): Map to ...
5977         (IMAGE_THUNK_DATA{32,64}: New structures.
5978         (IMAGE_IMPORT_DESCRIPTOR):  Map to ...
5979         (IMAGE_IMPORT_DESCRIPTOR{32,64}: New structures.
5980         (IMAGE_IMAGE_TLS_DIRECTORY)  Map to ...
5981         (IMAGE_IMAGE_TLS_DIRECTORY{32,64}: New structures.
5982
5983 2004-06-16  Bang Jun-Young  <junyoung@NetBSD.org>
5984
5985         * w32api/include/winnt.h (WAITORTIMERCALLBACKFUNC): Protect with
5986         _WIN32_WINNT >= 0x0500.
5987
5988 2004-06-05  Luke Dunstan  <infidel@users.sourceforge.net>
5989
5990         * include/winbase.h (GetWriteWatch): Correct prototype.
5991         (WRITE_WATCH_FLAG_RESET): Define.
5992         Thanks to Sergey Philippov <phis@users.sourceforge.net>.
5993
5994 2004-06-02  Rocher Laurent  <lrocher@users.sourceforge.net>
5995
5996         * include/commctrl.h (Animate_OpenEx): Define.
5997         (DateTime_GetSystemTime, DateTime_SetSystemTime): Correct names.
5998         (ListView_GetNumberOfWorkAreas): Correct macro.
5999         (ListView_SetUnicodeFormat, ListView_GetUnicodeFormat,
6000         ListView_SetItemCountEx, ListView_GetISearchString,
6001         TreeView_GetLastVisible, Header_CreateDragImage,
6002         Header_SetImageList, Header_GetImageList): Define.
6003         (LVM_SETUNICODEFORMAT, LVM_GETUNICODEFORMAT,
6004         MCM_GETUNICODEFORMAT, MCM_SETUNICODEFORMAT,
6005         TBSTATE_ELLIPSES): Define.
6006         (MonthCal_SetRange): Correct macro.
6007         (ImageList_Duplicate): Declare.
6008
6009 2004-05-29  Filip Navara  <xnavara@volny.cz>
6010
6011         * include/winnt.h (IMAGE_EXPORT_DIRECTORY): Fixed declaration.
6012
6013 2004-05-25  Al Slater  <al.slater@scluk.com>
6014
6015         * include/httpext.h (HSE_SEND_HEADER_EX_INFO,
6016         HSE_REQ_SEND_RESPONSE_HEADER_EX): Define.
6017
6018 2004-05-15  Filip Navara  <xnavara@volny.cz>
6019
6020         * include/ddk/kbdmou.h: New file.
6021         * lib/ddk/videoprt.def (VideoPortMapBankedMemory,
6022         VideoPortMapDmaMemory, VideoPortMapMemory): Correct suffix.
6023         * lib/ddk/ntoskrnl.def (_snprintf, _snwprintf, _vsnprintf,
6024         _vsnwprintf, sprintf, swprintf): Export.
6025
6026 2004-05-15  Filip Navara  <xnavara@volny.cz>
6027
6028         * include/ddk/ntddk.h: Don't set 4-byte alignment on included
6029         headers.
6030
6031 2004-05-07  Danny Smith  <dannysmith@users.sourceforge.net>
6032
6033         * include/wingdi.h: Correct non-unicode typedefs of
6034         ENUMLOGFONTEXDV, PENUMLOGFONTEXDV, LPENUMLOGFONTEXDV.
6035
6036 2004-05-07  Pascal Obry  <obry@act-europe.fr>
6037
6038         * include/winsock.h (IN_CLASSA): Fix macro.
6039         * include/winsock2.h (IN_CLASSA): Fix macro.
6040
6041 2004-04-29  Bart Oldeman  <bartoldeman@users.sourceforge.net>
6042
6043         * include/objbase.h (STGOPTIONS): Correct pwcsTemplateFile type.
6044         * include/aclui.h: Remove '\r', throughout.
6045         * include/msacm.h: Likewise.
6046         * lib/aclui.def: Likewise.
6047
6048 2004-04-28  Luke Dunstan  <infidel@users.sourceforge.net>
6049
6050         * lib/comctl32.def (SetWindowSubclass): Add stub.
6051         Thanks to Eugene <egladysh@users.sourceforge.net>.
6052
6053 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
6054
6055         * include/winbase.h (EXECUTION_STATE): Add typedef.
6056         (SetThreadExecutionState): Declare.
6057         * include/wingdi.h (_WINGDI_): Define.
6058         * include/objbase.h (_OBJBASE_H_): Define.
6059
6060 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
6061
6062         * include/winuser.h (SM_IMMENABLED, SM_CXFOCUSBORDER,
6063         SM_CYFOCUSBORDER, SM_TABLETPC, SM_MEDIACENTER): Add defines.
6064         (SM_CMETRICS): Adjust value.
6065         * include/winnt.h (PROCESSOR_ARCHITECTURE_MSIL): Correct define.
6066         (PROCESSOR_ARCHITECTURE_AMD64, PROCESSOR_ARCHITECTURE_IA32_ON_WIN64):
6067         Add defines.
6068         Thanks to Benoit Blanchon <bblanchon@users.sourceforge.net>
6069
6070 2004-04-24  Justin Forest  <vhex@users.sourceforge.net>
6071
6072         * include/winsock2.h (LUP_DEEP, LUP_CONTAINERS,
6073         LUP_NOCONTAINERS, LUP_NEAREST, LUP_RETURN_NAME,
6074         LUP_RETURN_TYPE, LUP_RETURN_VERSION, LUP_RETURN_COMMENT,
6075         LUP_RETURN_ADDR, LUP_RETURN_BLOB, LUP_RETURN_ALIASES,
6076         LUP_RETURN_QUERY_STRING, LUP_RETURN_ALL, LUP_RES_SERVICE,
6077         LUP_FLUSHCACHE, LUP_FLUSHPREVIOUS): Add defines.
6078
6079 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
6080
6081         * include/windns.h (DNSREC_QUESTION, DNSREC_ANSWER, DNSREC_AUTHORITY,
6082         DNSREC_ADDITIONAL): Add defines.
6083
6084 2004-04-23  Robert Wruck  <wruck@tweerlei.de>
6085
6086         * include/commctrl.h (LPNMLVDISPINFO): Add defines.
6087
6088 2004-04-23  Robert Wruck  <wruck@tweerlei.de>
6089
6090         * include/aclui.h: New file.
6091         * lib/aclui.def: New file.
6092         * lib/test.c: Add aclui.h to includes.
6093
6094 2004-04-21  Danny Smith  <dannysmith@users.sourceforge.net>
6095
6096         * include/winuser.h (SPI_GETACTIVEWINDOWTRACKING,
6097         SPI_GETACTIVEWNDTRKZORDER, SPI_SETACTIVEWINDOWTRACKING,
6098         SPI_SETACTIVEWNDTRKZORDER): Remove duplicate defines.
6099
6100 2004-04-20  Christopher Faylor  <cgf@alum.bu.edu>
6101
6102         * include/wingdi.h: Protect non-unicode case of below.
6103
6104 2004-04-20  Christopher Faylor  <cgf@alum.bu.edu>
6105
6106         * include/wingdi.h: Protect use of ENUMLOGFONTEXDV, PENUMLOGFONTEXDV,
6107         LPENUMLOGFONTEXDV with appropriate version check.
6108
6109 2004-04-18  Hans Leidekker  <hans@it.vu.nl>
6110
6111         * lib/directx/dxguid.c (CLSID_DirectSoundPrivate,
6112         DSPROPSETID_DirectSoundDevice): Add defines.
6113
6114 2004-04-20  Adrian Sandor  <aditsu@users.sourceforge.net>
6115
6116         * include/msacm.h: New file.
6117
6118 2004-01-09  Stuart Cunningham  <stuart_hc@users.sourceforge.net>
6119
6120         * include/objbase.h (STGFMT): Declare enum.
6121         (STGOPTIONS): Declare structure.
6122         (StgCreateStorageEx, StgOpenStorageEx): Declare.
6123         (STGOPTIONS_VERSION): Define.
6124         * lib/ole32.def (StgCreateStorageEx, StgOpenStorageEx): Add stubs.
6125
6126 2004-04-13  Filip Navara  <xnavara@volny.cz>
6127
6128         * include/winuser.h (IS_INTRESOURCE, MB_CANCELTRYCONTINUE,
6129         WM_NCXBUTTONDOWN, WM_NCXBUTTONUP, WM_NCXBUTTONDBLCLK,
6130         WM_XBUTTONDOWN, WM_XBUTTONUP, WM_XBUTTONDBLCLK,
6131         DCX_INTERSECTUPDATE, MK_XBUTTON1, MK_XBUTTON2,
6132         HELP_SETWINPOS): Define.
6133         (WM_MOUSELAST): Different value for _WIN32_WINNT >= 0x0500.
6134         (SPI_*): Add new definitions for WINVER >= 0x500.
6135         (CallMsgFilter[AW], SetWindowsHookA): Correct prototype.
6136         (InternalGetWindowText, SetWindowsHookW): Declare.
6137         * include/winbase.h (InitializeSListHead): Avoid conflicting
6138         definition with DDK headers.
6139
6140 2004-04-13  Gé van Geldorp  <gvg@reactos.com>
6141
6142         * include/winuser.h (GetLastError): Move from here...
6143         * include/winbase.h: ... to here.
6144
6145 2004-04-13  Filip Navara  <xnavara@volny.cz>
6146
6147         * include/winspool.h (DocumentPropertiesW): Correct prototype.
6148
6149 2004-04-13  Filip Navara  <xnavara@volny.cz>
6150
6151         * include/wingdi.h (ENHMETAHEADER): Add definitions for
6152         WINVER >= 0x400.
6153         (WCRANGE, GLYPHSET, LPPOLYTEXT[AW]): Declare.
6154         (ENUMLOGFONTEXW): Fix definition.
6155         (ENUMLOGFONTEXDV[AW]): Declare.
6156
6157 2004-04-13  Filip Navara  <xnavara@volny.cz>
6158
6159         * include/wingdi.h: Declare the DirectDraw structures only if
6160         the DirectDraw kernel mode headers aren't included.
6161         (EMFINFO): Declare.
6162         (EngStretchBlt, EngTextOut, FONTOBJ_cGetGlyphs,
6163         STROBJ_bEnumPositionsOnly): Correct prototypes.
6164
6165 2004-04-13  Filip Navara  <xnavara@volny.cz>
6166
6167         * include/objidl.h (PRPCOLEMESSAGE): Declare.
6168         * include/rpc.h (RPCRTAPI): Define.
6169         * include/rpcdce.h (RpcServerRegisterIf2): Declare.
6170         * include/rpcdcep.h (RPC_BLOCKING_FN, I_RpcSend): Declare.
6171         (RPC_BLOCKING_FUNCTION): Remove, replaced by RPC_BLOCKING_FN.
6172         (I_RpcBindingSetAsync): Correct prototype.
6173         * include/rpcndr.h (MIDL_STUB_MESSAGE): Rename 'Reserved' field
6174         to w2kReserved.
6175         (USER_MARSHAL_SIZING_ROUTINE, USER_MARSHAL_MARSHALLING_ROUTINE,
6176         USER_MARSHAL_UNMARSHALLING_ROUTINE, USER_MARSHAL_FREEING_ROUTINE,
6177         USER_MARSHAL_ROUTINE_QUADRUPLE, NDR_NOTIFY_ROUTINE, IDL_CS_CONVERT,
6178         CS_TYPE_NET_SIZE_ROUTINE, CS_TYPE_LOCAL_SIZE_ROUTINE,
6179         CS_TYPE_TO_NETCS_ROUTINE, CS_TYPE_FROM_NETCS_ROUTINE,
6180         CS_TAG_GETTING_ROUTINE, NDR_CS_SIZE_CONVERT_ROUTINES,
6181         NDR_CS_ROUTINES, NdrUserMarshalMarshall, NdrUserMarshalUnmarshall,
6182         NdrUserMarshalBufferSize, NdrUserMarshalMemorySize,
6183         NdrUserMarshalFree): Declare.
6184         (MIDL_STUB_DESC): Add new fields that were added in W2K.
6185         * include/rpcproxy.h (CStdStubBuffer): Ditto.
6186
6187 2004-04-13  Filip Navara  <xnavara@volny.cz>, David Welch  <welch@cwcom.net>
6188
6189         * include/ddk/ntapi.h (NtCurrentProcess, NtCurrentThread,
6190         LPC_MESSAGE_BASE_SIZE): Define.
6191         * include/ddk/ntifs.h: Move the pack pragma under header inclusion.
6192
6193 2004-04-13  Filip Navara  <xnavara@volny.cz>
6194
6195         * include/commctrl.h (TB_MARKBUTTON, NMTBGETINFOTIP[AW]):
6196         Declare.
6197
6198 2004-04-18  Allan Bazinet  <bazineta@users.sourceforge.net>
6199
6200         * include/winuser.h (MONITORINFOEX[AW]): Change to be derived from
6201         MONITORINFO when compiling as C++.
6202
6203 2004-04-17  Luke Dunstan  <infidel@users.sourceforge.net>
6204
6205         * README.w32api: List separate copyright conditions for some headers.
6206         * include/(winsock2.h, wsipx.h): Minor change to copyright header.
6207
6208 2004-04-15  Danny Smith  <dannysmith@users.sourceforge.net>
6209
6210         * include/wingdi.h (RGB): Correct macro.
6211
6212 2004-04-14  Robert Wruck  <rwruck@users.sourceforge.net>
6213
6214         * include/ddk/winddk.h (RtlEqualLuid): Correct macro.
6215
6216 2004-04-06  Luke Dunstan  <infidel@users.sourceforge.net>
6217
6218         * include/ocidl.h (QACONTAINERFLAGS): Correct typedef.
6219
6220 2004-03-29  Danny Smith  <dannysmith@users.sourceforge.net>
6221
6222         * lib/Makefile.in: Add directx to .PHONY target.
6223         * lib/directx/dxerr.c: Remove dependence on mingw runtime.
6224         Don't include stdio.h or tchar.h.
6225         Replace _T() macro with TEXT() macro, throughout.
6226         Replace _stprintf with wsprintf, throughout.
6227
6228 2004-03-27  Hosaka Yuji  <hos@tamanegi.org>
6229
6230         * include/dbt.h (DBT_DEVTYP_DEVICEINTERFACE, DBT_DEVTYP_HANDLE):
6231         Add define.
6232         (DEV_BROADCAST_DEVICEINTERFACE, DEV_BROADCAST_HANDLE): Add struct.
6233         * include/winuser.h (UnregisterDeviceNotification): Add prototype.
6234         * lib/user32.def (UnregisterDeviceNotification): Add export stub.
6235
6236 2004-03-27  Filip Navara  <xnavara@volny.cz>
6237
6238         * include/directx: New subdir.
6239         * lib/directx: Ditto.
6240         * include/directx/(d3d9.h, d3d9caps.h, d3d9types.h, dxerr8.h,
6241         dxerr9.h): New files.
6242         * lib/directx/(Makefile.in, d3d8.def, d3d9.def, d3dim.def, d3drm.def,
6243         d3dx8d.def, d3dx9d.def, d3dxof.def, ddraw.def, dinput.def,
6244         dinput_joy.c, dinput_joy2.c, dinput_kbd.c, dinput_mouse.c,
6245         dinput_mouse2.c, dinput_private.h, dinput8.def, dmoguids.c, dplayx.def,
6246         dpnaddr.def, dpnet.def, dpnlobby.def, dpvoice.def, dsetup.def,
6247         dsound.def, dxerr.c, dxerr8.c, dxerr8w.c, dxerr9.c, dxerr9w.c,
6248         dxguid.c, ksproxy.def, ksuser.c, ksuser.def, msdmo.def, quartz.def,
6249         strmiids.c, test.c): Ditto.
6250         * lib/(d3dim.def, d3drm.def, d3dxof.def, ddraw.def, dinput.c,
6251         dinput.def, dplayx.def, dsetup.def, dsound.def, dxguid.c): Removed.
6252
6253 2004-03-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6254
6255         * include/GL/glu.h (GLU_AUTO_LOAD_MATRIX, GLU_CULLING,
6256         GLU_SAMPLING_TOLERANCE, GLU_DISPLAY_MODE, GLU_PARAMETRIC_TOLERANCE,
6257         GLU_SAMPLING_METHOD, GLU_U_STEP, GLU_V_STEP): Define.
6258
6259 2004-03-24  Filip Navara  <xnavara@volny.cz>
6260
6261         * include/commctrl.h (TB_GETSTRING[AW]): Add defines.
6262         (RBBS_HIDETITLE, RBBS_TOPALIGN): Ditto.
6263
6264 2004-03-24  Filip Navara  <xnavara@volny.cz>
6265
6266         * include/ddk/srb.h (_PORT_CONFIGURATION_INFORMATION):  Rename
6267         TaggedQueueing to TaggedQueuing.
6268         (_HW_INITIALIZATION_DATA): Likewise.
6269
6270 2004-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
6271
6272         * include/docobj.h (IOleDocumentView::GetDocument): Correct
6273         prototype.
6274         Thanks to Buster Copley  <consequent@users.sourceforge.net>
6275
6276 2004-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
6277
6278         * lib/ddk/ntoskrnl.def (MmAllocatePagesForMdl): Correct suffix.
6279         (MmMapIoSpace): Likewise.
6280         Thanks to Dan Aloni  <da-x@colinux.org>
6281
6282 2004-03-16  Martin Fuchs  <martin-fuchs@gmx.net>
6283
6284         * include/shellapi.h (NIM_* NIS_*): Define constants for
6285         notification icons with _WIN32_IE >= 0x0500.
6286         (NOTIFYICONDATA): Add new structure members for notification
6287         icons with _WIN32_IE >= 0x0500.
6288
6289 2004-03-13  Danny Smith  <dannysmith@users.sourceforge.net>
6290
6291         *include/wininet.h (CACHEGROUP_SEARCH_ALL, CACHEGROUP_SEARCH_BYURL):
6292         Add defines.
6293         (INTERNET_CACHE_GROUP_ADD, INTERNET_CACHE_GROUP_REMOVE): Add defines.
6294         (GROUPID) Add typedef.
6295         (INTERNET_CACHE_GROUP_INFO[AW]): Define structures.
6296         (CreateUrlCacheGroup): Add prototype.
6297         (DeleteUrlCacheGroup): Add prototype.
6298         (FindFirstUrlCacheGroup): Add prototype.
6299         (FindNextUrlCacheGroup): Add prototype.
6300         (GetUrlCacheGroupAttribute[AW]): Add prototypes.
6301         (SetUrlCacheGroupAttribute[AW]): Add prototypes.
6302
6303 2004-03-10  Al Slater  <al.slater@scluk.com>
6304
6305         * include/winsock2.h: Add missing LPFN_ typdefs for
6306         function pointers.
6307         Clean up whitespace.
6308
6309 2004-03-05  Filip Navara  <xnavara@volny.cz>
6310
6311         * include/ddk/scsi.h: Replace assert with ASSERT.
6312         * include/ddk/video.h: Ditto.
6313         * include/ddk/winddk.h: Ditto. Remove the assert macro.
6314         * include/ddk/tdi.h: Correct packing.
6315
6316 2004-03-04  Danny Smith  <dannysmith@users.sourceforge.net>
6317
6318         * include/wtypes.h (DECIMAL_SETZERO): Add definition for
6319         NONAMELESSUNION case.
6320
6321 2004-03-03  Martin Fuchs  <martin-fuchs@gmx.net>
6322
6323         * include/oleauto.h (V_UNION, V_VT, V_DECIMAL): Use
6324         __VARIANT_NAME_ constants.
6325
6326 2004-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
6327
6328         * include/uxtheme.h: Include <commctrl.h>
6329
6330 2004-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
6331
6332         * include/basetyps.h (GUID_SECT): Define to nothing for GCC >= 2.95.
6333
6334 2004-03-02  Martin Fuchs  <martin-fuchs@gmx.net>
6335
6336         * include/oleauto.h (VAR_VALIDDATE, VAR_FORMAT_NOSUBSTITUTE,
6337         VAR_FOURDIGITYEARS): Define new constants. Group VAR_*  defines
6338         together.
6339         (V_UI2, V_UI4, V_UI4REF, V_UI, V_UI8REF): Define macros.
6340         (V_I8, V_I8REF): Correct macros.
6341         (V_DECIMAL): Correct macro definitions.
6342         (V_INT_PTR, V_UINT_PTR, V_INT_PTRREF, V_UINT_PTRREF): Define
6343         constants.
6344         (VTBIT_*): Define constants.
6345         (UDATE): Add structure definition.
6346         (VarDateFromUdate, VarDateFromUdateEx, VarUdateFromDate): Declare
6347         functions.
6348         (SafeArrayCreateVector): Correct parameter type from UINT to ULONG
6349         (SafeArrayCreateVectorEx): Declare function.
6350         (Var*): declare VARIANT manipulation functions.
6351         * include/ocidl.h (IPicture_*): Define IPicture COBJ macros.
6352         * include/oaidl.h (IRecordInfo_*): Define IRecordInfo COBJ
6353         macros.
6354
6355 2004-03-01  Martin Fuchs  <martin-fuchs@gmx.net>
6356
6357         * include/oaidl.h (FADF_*): Define missing constants.
6358         (IDispatch_*): Define COBJ macros.
6359         (VARIANT): Add missing union members llVal and ullVal.
6360         (wireVARIANT): Likewise.
6361         (ITypeinfo_*): Define COBJ macros.
6362         * include/oleauto.h (Var*FromDisp): Correct parameter type from
6363         LPDISPATCH* to LPDISPATCH.
6364         (VARCMP_*, VAR_LOCALBOOL, LOCALE_USE_NLS, VARIANT_*,
6365         VAR_CALENDAR_*): Add missing constants.
6366         (SafeArray[Get/Set]*): Add prototypes.
6367         (Var*From*):  Add missing prototypes.
6368         (NUMPRS_*): Add defines.
6369         (NUMPARSE): Define structure.
6370         (VarParseNumFromStr,VarNumFromParseNum): Add prototypes.
6371         * include/winerror.h (DISP_E_DIVBYZERO): Define constant.
6372         * include/winuser.h (COLOR_*): Define missing constants.
6373         * include/wtypes.h (enum VARENUM): Add VT_INT_PTR, VT_UINT_PTR.
6374         (VT_INT_PTR, VT_UINT_PTR): Remove macro definitions.
6375
6376 2004-02-23  Filip Navara  <xnavara@volny.cz>
6377
6378         * include/ddk/video.h: Corrected packing.
6379
6380 2004-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
6381
6382         * include/GL/glu.h (GLU_ERROR): Define.
6383         Thanks to Philip Lamb  <phil at rave dot co dot nz>
6384
6385 2004-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
6386
6387         * include/GL/glu.h: Include <stddef.h>.
6388         Thanks to Greg Couch <gregcouch@users.sourceforge.net>
6389
6390 2004-02-15  Earnie Boyd  <earnie@users.sf.net>
6391
6392         * include/w32api.h: Increment version to 3.0.
6393         * Makefile.in: Ditto.
6394         * README.win32api: Modify license to Public Domain per agreement as
6395         found in the mingw-dvlpr list archive.
6396
6397 2004-02-13  Earnie Boyd  <earnie@users.sourceforge.net>
6398
6399         * include/ddk/winddk.h (DIRECTORY_QUERY): Add define.
6400         (DIRECTORY_TRAVERSE): Ditto.
6401         (DIRECTORY_CREATE_OBJECT): Ditto.
6402         (DIRECTORY_CREATE_SUBDIRECTORY): Ditto.
6403         (DIRECTORY_ALL_ACCESS): Ditto.
6404         Thanks to Konstantin Stepaniuk <skostia@users.sourceforge.net>
6405
6406 2004-02-12  Danny Smith  <dannysmith@users.sourceforge.net>
6407
6408         * include/basetypes.h (_REFIID_DEFINED): Correct typo.
6409
6410         * include/winuser.h (NCCALCSIZE_PARAMS): Define structure.
6411         Thanks to Mike Nordell <tamlin at algonet dot se>.
6412
6413 2004-02-11  Danny Smith  <dannysmith@users.sourceforge.net>
6414
6415         * lib/dnsapi.def: New file.
6416         * lib/test.c: Include windns.h.
6417
6418 2004-02-11  Pierre A. Humblet  <Pierre.Humblet@ieee.org>
6419
6420         * include/windns.h: New file.
6421
6422 2004-02-11  Danny Smith  <dannysmith@users.sourceforge.net>
6423
6424         * include/sqlucode.h (SQLGetStmtAttr[AW]): Remove duplicate
6425         defines.
6426         (SQLSetStmtAttr[AW]): Move into ODBCVER >= 0x0300 block.
6427         (SQLSetDescFieldW): Correct prototype.
6428         (SQLSetDescFieldA): Add prototype.
6429         (SQLGetDescFieldW): Add prototype.
6430
6431 2004-02-11  Pat Thoyts  <patthoyts@users.sourceforge.net>
6432
6433         * include/winuser.h (DFC_POPUPMENU): Add define.
6434
6435 2004-02-07  Dan Aloni  <da-x@gmx.net>
6436
6437         * lib/ddk/ntoskrnl.def (KeSetTimer,KeSetTimerEx): Correct
6438         suffix.
6439
6440 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
6441
6442         * include/oleacc.h (LIBID_Accessibility): Declare.
6443         * lib/uuid.c (LIBID_Accessibility): Define.
6444
6445 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
6446
6447         * include/winioctl.h (NTFS_VOLUME_DATA_BUFFER): Add structure.
6448         (FSCTL_GET_NTFS_VOLUME_DATA): Add macro.
6449
6450 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
6451
6452         * include/commctrl.h (ICC_STANDARD_CLASSES, ICC_LINK_CLASS): Add
6453         defines.
6454
6455 2004-01-31  Jiri Malak  <Jiri.Malak@geac.cz>
6456
6457         * include/winuser.h (RT_MANIFEST): Make conditional on
6458         RC_INVOKED.
6459         (CREATEPROCESS_MANIFEST_RESOURCE_ID,
6460         ISOLATIONAWARE_MANIFEST_RESOURCE_ID,
6461         ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID): Add
6462         defines.
6463
6464 2004-01-16 Martin Fuchs  <martin-fuchs@gmx.net>
6465
6466         * include/shlobj.h (SHGDN_INCLUDE_NONFILESYS): Add define.
6467
6468 2004-01-15  Filip Navara  <xnavara@volny.cz>
6469
6470         * include/ddk/mcd.h: Don't care about value of DBG define.
6471         * include/ddk/srb.h: Ditto.
6472         * include/ddk/storport.h: Ditto.
6473         * include/ddk/video.h: Ditto.
6474         * include/nspapi.h (SetServiceW, GetAddressByNameA,
6475         GetAddressByNameW): Correct protoype.
6476         * include/ntsecapi.h (PCUNICODE_STRING): Define.
6477
6478 2004-01-05  Filip Navara  <xnavara@volny.cz>
6479
6480         * include/prsht.h (LPCPROPSHEETPAGEW): Fix definition.
6481         * include/shlwapi.h (SHRegQueryInfoUSKey[AW]): Fix prototype.
6482         * include/cpl.h (CPL_STARTWPARMS[AW]): Correct.
6483         * include/shellapi.h (ABS_AUTOHIDE, ABS_ALWAYSONTOP,
6484         SEE_MASK_NO_CONSOLE, SEE_MASK_ASYNCOK, SEE_MASK_HMONITOR,
6485         FOF_NOCOPYSECURITYATTRIBS): Add defines.
6486         * include/shlobj.h (BFFM_SETOKTEXT, BFFM_SETEXPANDED,
6487         CSIDL_FLAG_DONT_VERIFY, CSIDL_FLAG_CREATE, CSIDL_FLAG_MASK,
6488         CFSTR_INETURL[AW], SHGDN_FOREDITING, SHGDN_FORADDRESSBAR,
6489         SSF_*): Add defines.
6490         (SHCNF_PATH[AW], SHCNF_PRINTER[AW], CFSTR_FILENAME[AW],
6491         CFSTR_FILENAMEMAP[AW], CFSTR_FILEDESCRIPTOR[AW], CFSTR_SHELLURL,
6492         CMDSTR_NEWFOLDER[AW], CMDSTR_VIEWLIST[AW], CMDSTR_VIEWDETAILS[AW]):
6493         Correct.
6494         (IEnumIDList): Add COBJMACROS.
6495         * include/winuser.h (MIM_*): Add define.
6496
6497 2004-01-04  Filip Navara  <xnavara@volny.cz>
6498
6499         * include/shlguid.h (IID_IPersistFolder2, IID_IPersistFolder3,
6500         IID_IShellFolder2, IID_IFileSystemBindData): Add declarations.
6501         * include/shlobj.h (EXTRASEARCH, SHCOLSTATEF, SHELLDETAILS,
6502         PERSIST_FOLDER_TARGET_INFO): Define structures.
6503         (IEnumExtraSearch, IShellFolder2, IFileSystemBindData,
6504         IPersistFolder2, IPersistFolder3): Add COM interface
6505         definitions.
6506         (IExtractIcon[AW], IShellLink[AW], IPersistFolder, IShellView,
6507         ICommDlgBrowser, IShellFolder2, IPersistFolder2, IPersistFolder3):
6508         Add COBJMACROS.
6509         (SHCreateDirectoryEx[AW], SHBindToParent): Add prototypes.
6510         * lib/shell32.c (IID_IPersistFolder2, IID_IPersistFolder3,
6511         IID_IShellFolder2, IID_IFileSystemBindData): Add definitions.
6512
6513 2004-01-03  Danny Smith  <dannysmith@users.sourceforge.net>
6514
6515         * include/mshtml.h (IHTMLDocument2): Correct write, writeln
6516         declarations.
6517         Thanks to: Rene Nyffenegger <renenyffenegger@users.sf.net>.
6518
6519 2004-01-03  Filip Navara  <xnavara@volny.cz>
6520
6521         * include/cguid.h (CLSID_StdGlobalInterfaceTable): Declare IID.
6522         * include/oaidl.h (ITypeLib2, ITypeInfo2): Define interfaces,
6523         declare IID's.
6524         (IErrorInfo): Add COBJMACROS.
6525         * include/objbase.h (STGM_NOSNAPSHOT): Add define.
6526         (CoGetPSClsid): Add protototype,
6527         (CoRegisterPSClsid): Likewise.
6528         * include/objidl.h (IMarshal): Correct methods.
6529         (IMallocSpy): Likewise,
6530         (LPPSFACTORYBUFFER): Add typedef.
6531         (IGlobalInterfaceTable): Define interface and COBJMACROS. Declare
6532         IID.
6533         (IStorage_CreateStorage, IRpcStubBuffer_Invoke): Fix macros.
6534         * include/ocidl.h (PROPBAG2_TYPE): Define enum.
6535         (PROPBAG2, QACONTAINERFLAGS, QACONTAINER, QACONTROL): Define
6536         structures.
6537         (IPropertyBag2, IPersistPropertyBag2,IAdviseSinkEx, IPointerInactive,
6538         IOleUndoUnit, IOleParentUndoUnit, IEnumOleUndoUnits, IOleUndoManager,
6539         IQuickActivate): Define interfaces. Declare IID's.
6540         (IPersistPropertyBag2): Add COBJMACROS.
6541         (LPOLEUNDOMANAGER): Add typedef.
6542         (LPPROPERTYBAG2): Likewise.
6543         * include/oleidl.h (LPPARSEDISPLAYNAME): Fix definiton.
6544         (BINDSPEED): Add definition.
6545         (IParseDisplayName, IOleItemContainer, IOleObject, IDropSource,
6546         IDropTarget): Add COBJMACROS.
6547         * include/wtypes.h (MEMCTX, MSHCTX): Fix enum.
6548         * include/winerror.h (CO_S_NOTALLINTERFACES): Add define.
6549         * lib/uuid.c (IID_IGlobalInterfaceTable, IID_IOleUndoManager,
6550         IID_IPersistPropertyBag2, IID_IPropertyBag2, IID_IRpcProxyBuffer):
6551         Add IID definitions.
6552
6553 2004-01-02  Filip Navara  <xnavara@volny.cz>
6554
6555         * include/ddk/winddk.h: Don't care about value of
6556         DBG define.
6557
6558 2004-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
6559             Filip Navara  <xnavara@volny.cz>
6560
6561         * include/ddk/winddk.h (_DDK_DUMMYUNION_MEMBER,
6562         _DDK_DUMMYUNION_N_MEMBER): New macros.
6563         (ExAllocateFromPagedLookasideList,ExFreeToPagedLookasideList,
6564         ExAllocateFromNPagedLookasideList, ExFreeToNPagedLookasideList):
6565         Use them.
6566
6567 2004-01-01  Filip Navara  <xnavara@volny.cz>
6568
6569         * include/objbase.h: Don't care about value of DBG define.
6570         * include/objidl.h: Add some COBJMACROS.
6571         * include/ocidl.h: Ditto.
6572         * include/oleidl.h: Ditto.
6573         * include/servprov.h: Ditto.
6574         * include/shlobj.h: Ditto.
6575         * include/shlobj.h (IContextMenu2): Correct parent in
6576         DECLARE_INTERFACE.
6577         * include/oleidl.h (IOleCache, IOleCache2, IOleCacheControl):
6578         Define interfaces.
6579         * include/setupapi.h (SetupGetLineTextA): Correct prototype.
6580         Add new constants for _SETUPAPI_VER >= 0x501.
6581
6582 2004-01-01  Filip Navara  <xnavara@volny.cz>
6583
6584         * include/winnt.h (NtCurrentTeb): Add inline definition.
6585
6586 2004-01-01  Martin Fuchs  <martin-fuchs@gmx.net>
6587
6588         * include/shlobj.h (SHCoCreateInstance): Add prototype.
6589         * lib/shell32.def (SHCoCreateInstance): Add export stub.
6590
6591 2004-01-01  Igor Pechtchanski  <pechtcha@cs.nyu.edu>
6592
6593         * lib/setupapi.def (CM_Request_Device_Eject[AW]): Add export.
6594         (CM_Request_Device_Eject_Ex[AW]): Likwise.
6595         * include/ddk/cfg.h (DN_*): Add defines.
6596
6597 2004-01-01  Danny Smith  <dannysmith@users.sourceforge.net>
6598
6599         * lib/ddk/cfgmgr32.def: Remove duplicate symbol names.
6600
6601 2004-01-01  Mattia Barbon  <mbarbon@users.sourceforge.net>
6602
6603         * include/commctrl.h (TVN_GETINFOTIP): Add UNICODE mappings.
6604         (NMTVGETINFOTIP): Add structure.
6605
6606 2003-12-08  Danny Smith  <dannysmith@users.sourceforge.net>
6607
6608         * include/winuser.h (DISPLAY_DEVICE_*): Remove defines.
6609         * include/wingdi.h (DISPLAY_DEVICE_REMOVABLE,
6610         DISPLAY_DEVICE_MODESPRUNED): Add defines.
6611
6612 2003-12-08  Hartmut Honisch  <hhonisch@users.sourceforge.net>
6613
6614         * include/commctrl.h (ListView_Get_State, ListView_Check_State):
6615         Add macros.
6616         * include/wingdi.h  (DISPLAY_DEVICE_*): Add multi-monitor
6617         constants.
6618         * include/shlobj.h (SHCOLUMNINIT): Add structure.
6619         (SHCOLUMNDAT): Likwise.
6620         (SHCOLUMNID): Likewise.
6621         (SHCOLUMNINFO): Likewise.
6622         (SHCOLSTATE): Add enum.
6623         (IColumnProvider): Add COM interface.
6624         (IQueryInfo): Likewise.
6625         (IShellIconOverlayIdentifier): Likewise.
6626         * include/shlguid.h (IID_IColumnProvider) Declare.
6627         (IID_IQueryInfo): Likweise.
6628         (IID_IShellIconOverlayIdentifier): Likwise.
6629         * lib/shell32.c (IID_IColumnProvider) Define.
6630         (IID_IQueryInfo): Likweise.
6631         (IID_IShellIconOverlayIdentifier): Likwise.
6632
6633 2003-12-08  Roald Ribe  <rrib@users.sourceforge.net>
6634
6635         * include/winuser.h (RT_MANIFEST): Add define.
6636
6637 2003-12-08  Pascal Buhler  <pbuhler@users.sourceforge.net>
6638
6639         * include/oleidl.h (IViewObject2): Inherit from IViewObject.
6640
6641 2003-12-01  Danny Smith  <dannysmith@users.sourceforge.net>
6642
6643         * include/winnt.h (GetCurrentFiber): Remove duplicate prototype.
6644         (GetFiberData): Likewise.
6645         (GetCurrentFiber): Change volatile to __volatile__.
6646         (GetFiberData): Likewise.
6647
6648 2003-11-27  Christopher Faylor  <cgf@redhat.com>
6649
6650         * lib/Makefile.in: Use make function to locate .mri file to allow
6651         building in directory other than source directory.
6652
6653 2003-11-27  Danny Smith  <dannysmith@users.sourceforge.net>
6654
6655         * lib/vfw32.def: Remove, replacing with ...
6656         * lib/msvfw32.def: New file.
6657         * lib/avicap32.def: New file.
6658         * lib/avifil32.def: New file.
6659         * lib/vfw32.mri: New file.
6660         * Makefile.in: (MRI_FILES, MIMPLIBS): New vars for
6661         import libs with multiple dll's.
6662         (LIBS): Add MIMPLIBS.
6663         (DISTFILES): Add MRI_FILES.
6664         (libvfw32.a): Build using mri script.
6665
6666 2003-11-23  Danny Smith  <dannysmith@users.sourceforge.net>
6667
6668         * include/winnt.h (PAGE_*): Group defines together. Change
6669         constants to hex notation.
6670
6671 2003-11-15  Manu B  <manubee@users.sourceforge.net>
6672
6673         * include/commctrl.h (TabCtrl_GetImageList): Add macro.
6674
6675 2003-11-13 Martin Fuchs  <martin-fuchs@gmx.net>
6676
6677         * include/shlobj.h (ILAppendID, ILClone, ILCloneFirst, ILCombine,
6678         ILFindChild, ILFindLastID, ILFree, ILGetNext, ILGetSize, ILIsEqual,
6679         ILIsParent, ILLoadFromStream, ILRemoveLastID, ILSaveToStream):
6680         Add prototypes.
6681         * lib/shell32.def: Add stubs.
6682
6683         * include/commctrl.h (ListView_FindItem): Add type cast to avoid
6684         compiler warnings.
6685
6686 2003-11-13  Hans Leidekker  <hans@it.vu.nl>
6687
6688         * include/winbase.h (WIN32_STREAM_ID): Correct typedef.
6689
6690 2003-10-13  Andre Auzi  <aauzi@users.sourceforge.net>
6691
6692         * include/windows.h (CopyCursor): Define as macro.
6693
6694 2003-10-13  Steven Edwards  <Steven_Ed4153@yahoo.com>
6695
6696         * include/winnt.h (CONTAINING_RECORD): Add macro.
6697
6698 2003-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
6699
6700         * include/winnt.h: (FILE_SUPERSEDED, FILE_OPENED, FILE_CREATED,
6701         FILE_OVERWRITTEN, FILE_EXISTS, FILE_DOES_NOT_EXIST): Remove
6702         defines.
6703
6704 2003-10-13  Filip Navara  <xnavara@volny.cz>
6705
6706         * include/commctrl.h (DSA_*): Add prototypes, typedefs and
6707         defines for Dynamic Storage Arrays.
6708         (DPA_*): Likewise, for Dynamic Pointer Arrays.
6709         (FlatSB_*, InitializeFlatSB, InitializeFlatSB): Add prototypes
6710         and defines for Flat ScrollBars.
6711         (SetWindowSubclass, GetWindowSubclass, RemoveWindowSubclass,
6712         DefSubclassProc): Add prototypes for subclassing.
6713         (DrawShadowText): Add prototype.
6714         (COMCTL32_VERSION): Define.
6715
6716 2003-10-13  Martin Fuchs  <Martin-Fuchs@gmx.net>
6717
6718         * include/shlobj.h (CFSTR_FILENAME, CFSTR_FILEDESCRIPTOR,
6719         CFSTR_FILENAMEMAP, CFSTR_SHELLURL): Correct UNICODE definitions.
6720
6721 2003-10-13  Pierre Humblet  <pierre.humblet@ieee.org>
6722
6723         * include/winnt.h (SM_REMOTESESSION): Add define.
6724         * include/winuser.h (SE_CREATE_GLOBAL_NAME): Ditto.
6725
6726 2003-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
6727
6728         * include/wincrypt (KP_IV, KP_SALT, KP_PADDING, KP_MODE,
6729         KP_MODE_BITS, KP_PERMISSIONS, KP_ALGID, KP_BLOCKLEN): Remove
6730         duplicate definitions.
6731         (KP_X, KP_Y): Correct typos.
6732
6733 2003-10-11  Manu B  <manubee@users.sourceforge.net>
6734
6735         * include/afxres.h: New file.
6736
6737         * include/richedit.h (ES_NOOLEDRAGDROP, ENM_DRAGDROPDONE,
6738         ENM_IMECHANGE, ENM_LANGCHANGE, ENM_OBJECTPOSITIONS,
6739         ENM_SCROLLEVENTS): Add constants.
6740
6741         * include/richedit.h (ES_SELECTIONBAR, ENM_LINK): Sort constants.
6742
6743 2003-10-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6744
6745         * include/errorep.h: New file.
6746
6747         * lib/faultrep.def: New file.
6748
6749 2003-10-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6750
6751         * include/winbase.h (AddVectoredExceptionHandler): Define if
6752         _WIN32_WINNT >= 0x0500.
6753
6754         * include/winnt.h (PVECTORED_EXCEPTION_HANDLER): Define if
6755         _WIN32_WINNT >= 0x0500.
6756
6757 2003-10-08  Corinna Vinschen  <corinna@vinschen.de>
6758
6759         * include/winbase.h (AddVectoredExceptionHandler): Only define if
6760         _WIN32_WINNT >= 0x0501.
6761
6762 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6763
6764         * include/winbase.h [_WIN32_WINNT >= 0x0500] (SetComputerNameEx[AW],
6765         UnregisterWaitEx): Add functions.
6766
6767         * include/winbase.h [_WIN32_WINNT >= 0x0500]
6768         (AddVectoredExceptionHandler, RemoveVectoredExceptionHandler): Add
6769         or guard function. The MSDN says it is available on Windows XP and
6770         better, and then it says it is declared for _WIN32_WINNT >= 0x0500.
6771         Huh?
6772
6773         * include/winbase.h [_WIN32_WINNT >= 0x0501] (AddRefActCtx,
6774         CreateActCtx[AW], SetFileShortName[AW], SetFileValidData,
6775         ZombifyActCtx, QueryActCtxW): Add functions.
6776
6777         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6778         (QUERY_ACTCTX_FLAG_USE_ACTIVE_ACTCTX,
6779         QUERY_ACTCTX_FLAG_ACTCTX_IS_HMODULE,
6780         QUERY_ACTCTX_FLAG_ACTCTX_IS_ADDRESS): Add constants.
6781
6782         * include/winbase.h [_WIN32_WINNT >= 0x0502] (SetDllDirectory[AW],
6783         SetFirmwareEnvironmentVariable[AW]): Add functions.
6784
6785         * include/winnt.h [_WIN32_WINNT >= 0x0500] (VER_BUILDNUMBER,
6786         VER_MAJORVERSION, VER_MINORVERSION, VER_PLATFORMID,
6787         VER_SERVICEPACKMAJOR, VER_SERVICEPACKMINOR, VER_SUITENAME,
6788         VER_PRODUCT_TYPE, VER_EQUAL, VER_GREATER, VER_GREATER_EQUAL,
6789         VER_LESS, VER_LESS_EQUAL, VER_AND, VER_OR): Add constants.
6790
6791         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6792         (PVECTORED_EXCEPTION_HANDLER): Add callback.
6793
6794         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6795         (ACTIVATION_CONTEXT_INFO_CLASS,
6796         ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION,
6797         ACTIVATION_CONTEXT_DETAILED_INFORMATION,
6798         ACTIVATION_CONTEXT_QUERY_INDEX, ASSEMBLY_FILE_DETAILED_INFORMATION):
6799         Add structures.
6800
6801         * lib/user32.def (AddRefActCtx, AddVectoredExceptionHandler,
6802         CreateActCtx[AW], SetComputerNameEx[AW], SetDllDirectory[AW],
6803         SetFileShortName[AW], SetFileValidData,
6804         SetFirmwareEnvironmentVariable[AW], UnregisterWaitEx,
6805         VerSetConditionMask, ZombifyActCtx, QueryActCtxW): Add functions.
6806
6807 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6808
6809         * include/winbase.h (GetWriteWatch, IsSystemResumeAutomatic,
6810         ResetWriteWatch): Add function.
6811
6812         * include/winbase.h [_WIN32_WINNT >= 0x0500]
6813         (GetSystemWindowsDirectory[AW], ProcessIdToSessionId, ReplaceFile[AW]):
6814         Add functions.
6815
6816         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6817         (GetSystemWow64Directory[AW], HeapQueryInformation,
6818         HeapSetInformation, InitializeSListHead, InterlockedFlushSList,
6819         InterlockedPopEntrySList, InterlockedPushEntrySList, IsProcessInJob,
6820         IsWow64Process, QueryMemoryResourceNotification, ReleaseActCtx,
6821         RemoveVectoredExceptionHandler): Add functions.
6822
6823         * include/winnt.h [_WIN32_WINNT >= 0x0501] (HEAP_INFORMATION_CLASS):
6824         Add enumeration.
6825
6826         * include/winbase.h [_WIN32_WINNT >= 0x0502] (GetThreadIOPendingFlag):
6827         Add function.
6828
6829         * include/winbase.h [_WIN32_WINNT >= 0x0510] (RestoreLastError):
6830         Add function. The MSDN Magazine of June 2003 reads:
6831                 RestoreLastError is an enigma. It's code is identical to
6832                 SetLastError. It's unclear to me why it was made into a
6833                 separate API.
6834
6835         * lib/user32.def (GetSystemWindowsDirectory[AW],
6836         GetSystemWow64Directory[AW], GetThreadIOPendingFlag,
6837         HeapQueryInformation, HeapSetInformation, InitializeSListHead,
6838         InterlockedFlushSList, InterlockedPopEntrySList,
6839         InterlockedPushEntrySList, IsSystemResumeAutomatic, IsWow64Process,
6840         ProcessIdToSessionId, QueryMemoryResourceNotification, ReleaseActCtx,
6841         RemoveVectoredExceptionHandler, ReplaceFile[AW], ResetWriteWatch,
6842         RestoreLastError): Add functions.
6843
6844 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6845
6846         * include/winbase.h [_WIN32_WINNT >= 0x0500] (GetComputerNameEx[AW],
6847         GetProcessIoCounters): Add functions.
6848
6849         * include/winbase.h [_WIN32_WINNT >= 0x0500] (COMPUTER_NAME_FORMAT):
6850         Move around, needed by GetComputerNameEx.
6851
6852         * include/winbase.h [_WIN32_WINNT >= 0x0501] (FindActCtxSectionGuid,
6853         FindActCtxSectionString[AW], GetCurrentActCtx, GetNativeSystemInfo):
6854         Add functions.
6855
6856         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6857         (ACTCTX_SECTION_KEYED_DATA): Add structure.
6858
6859         * include/winbase.h [_WIN32_WINNT >= 0x0502] (GetDllDirectory[AW],
6860         GetFirmwareEnvironmentVariable[AW], GetProcessHandleCount,
6861         GetProcessId, GetSystemRegistryQuota): Add functions, available on
6862         Windows XP SP1 and better.
6863
6864         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6865         (ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION,
6866         ACTIVATION_CONTEXT_SECTION_DLL_REDIRECTION,
6867         ACTIVATION_CONTEXT_SECTION_WINDOW_CLASS_REDIRECTION,
6868         ACTIVATION_CONTEXT_SECTION_COM_SERVER_REDIRECTION,
6869         ACTIVATION_CONTEXT_SECTION_COM_INTERFACE_REDIRECTION,
6870         ACTIVATION_CONTEXT_SECTION_COM_TYPE_LIBRARY_REDIRECTION,
6871         ACTIVATION_CONTEXT_SECTION_COM_PROGID_REDIRECTION,
6872         ACTIVATION_CONTEXT_SECTION_CLR_SURROGATES): Add constants.
6873
6874         * lib/user32.def (FindActCtxSectionGuid, FindActCtxSectionString[AW],
6875         GetComputerNameEx[AW], GetCurrentActCtx, GetDllDirectory[AW],
6876         GetFirmwareEnvironmentVariable[AW], GetModuleHandleEx[AW],
6877         GetNativeSystemInfo, GetProcessHandleCount, GetProcessIoCounters):
6878         Add functions.
6879
6880 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6881
6882         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6883         (CheckRemoteDebuggerPresent, DebugActiveProcessStop, DebugBreakProcess,
6884         DebugSetProcessKillOnExit): Add functions.
6885
6886         * include/winbase.h [_WIN32_WINNT >= 0x0500] (DeleteTimerQueue,
6887         DeleteTimerQueueEx, DeleteTimerQueueTimer,
6888         DnsHostnameToComputerName[AW]): Add functions.
6889
6890         * lib/user32.def (CheckRemoteDebuggerPresent, DebugActiveProcessStop,
6891         DebugBreakProcess, DebugSetProcessKillOnExit, DeleteTimerQueueEx,
6892         DeleteTimerQueueTimer, DnsHostnameToComputerName[AW]): Add functions.
6893
6894 2003-10-07  Kobun Fujimori  <kobun@users.sourceforge.net>
6895
6896         * include/winbase.h (GetVolumePathNamesForVolumeName): Available
6897         on Windows XP and later.
6898
6899 2003-10-07  Manu B  <manubee@users.sourceforge.net>
6900
6901         * include/commctrl.h (TreeView_Select): Returns BOOL.
6902
6903 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6904
6905         * include/winbase.h (CancelDeviceWakeupRequest): Add function.
6906
6907         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6908         (CreateMemoryResourceNotification, DeactivateActCtx): Add functions.
6909
6910         * include/winbase.h [_WIN32_WINNT >= 0x0500] (CreateTimerQueue,
6911         CreateTimerQueueTimer): Add function.
6912
6913         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6914         (MEMORY_RESOURCE_NOTIFICATION_TYPE): Add enumeration.
6915
6916         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6917         (DEACTIVATE_ACTCTX_FLAG_FORCE_EARLY_DEACTIVATION): Add constant.
6918
6919         * include/winnt.h (WT_*): Add constants.
6920
6921         * lib/user32.def (CancelDeviceWakeupRequest,
6922         CreateMemoryResourceNotification, CreateTimerQueueTimer,
6923         DeactivateActCtx): Add functions.
6924
6925 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6926
6927         * include/winbase.h [_WIN32_WINNT >= 0x0400] (ConvertFiberToThread):
6928         Add function. Sometimes I don't understand MSDN. This function is
6929         available on Windows XP and Server 2003, but the SDK is supposed to
6930         make it available when _WIN32_WINNT >= 0x0400, or so says the MSDN.
6931         Mmmh...
6932
6933         * include/winbase.h [_WIN32_WINNT >= 0x0400] (CreateFiberEx):
6934         Guard function. Same remark as above.
6935
6936         * lib/user32.def (ConvertFiberToThread, CreateFiberEx):
6937         Add functions.
6938
6939 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6940
6941         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ACTCTX_FLAG_*):
6942         Add constants.
6943
6944         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ACTCTX[AW]): Add
6945         structures.
6946
6947         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ActivateActCtx): Add
6948         function. MSDN says the first argument is HACTCTX but I'm not sure
6949         where such a specialized handle is defined, so use HANDLE instead.
6950
6951         * include/winbase.h [_WIN32_WINNT >= 0x0501] (AttachConsole,
6952         CheckNameLegalDOS8Dot3[AW]): Add functions.
6953
6954         * lib/user32.def (ActivateActCtx, AttachConsole,
6955         CheckNameLegalDOS8Dot3[AW]): Add functions.
6956
6957         * lib/user32.def (AddLocalAlternateComputerName[AW]): Add functions.
6958         Unfortunately I don't know which header to put the declarations in.
6959
6960 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6961
6962         * include/winnls.h (CTRY_KYRGYZSTAN, CTRY_MALDIVES, CTRY_MONGOLIA):
6963         Add constants.
6964
6965         * include/winnls.h (NLS_FUNCTION, SYSGEOCLASS, SYSGEOTYPE): Add
6966         constants for National Language Support.
6967
6968         * include/winnls.h (NLSVERSIONINFO): Add structure for National
6969         Language Support.
6970
6971         * include/winnls.h (GEO_ENUMPROC): Add callback for National
6972         Language Support.
6973
6974         * include/winnls.h (EnumSystemGeoID, GetCalendarInfo[AW],
6975         GetGeoInfo[AW], GetUserGeoID, SetCalendarInfo[AW], SetUserGeoID):
6976         Add functions.
6977
6978         * include/winnls.h (IsNLSDefinedString, GetNLSVersion): Add
6979         functions. Strange... I am unable to find which library contains
6980         these functions. Can't find anything with pexports. Any clue?
6981
6982         * lib/user32.def (EnumSystemGeoID, GetGeoInfo[AW], GetUserGeoID,
6983         SetUserGeoID): Add functions.
6984
6985 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6986
6987         * include/winnt.h (LANG_KYRGYZ, LANG_MONGOLIAN, LANG_GALICIAN,
6988         LANG_SYRIAC, LANG_INVARIANT, SUBLANG_KASHMIRI_SASIA): Add constants.
6989
6990         * include/winnt.h (SUBLANG_AZERI_LATIN, SUBLANG_AZERI_CYRILLIC,
6991         SUBLANG_ENGLISH_ZIMBABWE, SUBLANG_ENGLISH_PHILIPPINES): Fix wrong
6992         value for constants.
6993
6994 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6995
6996         * include/wincrypt.h (SCHANNEL_MAC_KEY, SCHANNEL_ENC_KEY,
6997         INTERNATIONAL_USAGE, KP_SCHANNEL_ALG): Add constants. Specifying
6998         the algorithms.
6999
7000 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7001
7002         * include/wincrypt.h (CRYPT_FLAGS_*): Add constants. Protocol flags.
7003
7004 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7005
7006         * include/wincrypt.h (KP_*): Add constants. Needed by
7007         CryptSetKeyParam() and other functions.
7008
7009 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7010
7011         * include/winuser.h [_WIN32_WINNT >= 0x0501] (EVENT_*, CONSOLE_*):
7012         Add constants, related to Console Accessibility.
7013
7014 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7015
7016         * include/winuser.h [WINVER >= 0x0500] (EVENT_MAX): Ooops...
7017         wrong value for constant.
7018
7019 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7020
7021         * include/winuser.h [WINVER >= 0x0500] (EVENT_*): Add constants.
7022
7023         * include/uxtheme.h: Cleanup.
7024         * include/tmschema.h: Cleanup.
7025
7026 2003-10-02  Luke Dunstan  <infidel@users.sourceforge.net>
7027
7028         * include/winspool.h (GetDefaultPrinter[AW]): Add functions.
7029         * lib/winspool.def (GetDefaultPrinter[AW]): Add stubs.
7030
7031 2003-10-01  Danny Smith  <dannysmith@users.sourceforge.net>
7032
7033         * include/winnt.h (INVALID_FILE_ATTRIBUTES): Fix define.
7034
7035 2003-09-30  Danny Smith  <dannysmith@users.sourceforge.net>
7036
7037         * include/winuser.h (BSF_*, BSM_*):  Sync constants defined in
7038         both winuser.h and dbt.h.
7039         * include/dbt.h (BSF_*, BSM_*): Likewise.
7040
7041         * include/winuser.h (struct tagRAWINPUT): Remove
7042         _ANONYMOUS_UNION tag from named union.
7043         (struct tagRAWMOUSE): Add _ANONYMOUS_STRUCT to nameless struct.
7044
7045 2003-09-30  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7046
7047         * include/dhcpcdsk.h: New file.
7048         Note that MSDN is confused about whether it should start constant
7049         and structure names with DHCPCAPI or DHCPAPI. It's using both but
7050         experience suggests it's DHCPCAPI with `C'.
7051
7052         * lib/dhcpcsvc.def: New file.
7053
7054 2003-09-30  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7055
7056         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIM_INPUT,
7057         RIM_INPUTSINK): Add constants, for use by WM_INPUT notification.
7058
7059         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIDEV_REMOVE,
7060         RIDEV_EXCLUDE, RIDEV_PAGEONLY, RIDEV_NOLEGACY, RIDEV_INPUTSINK,
7061         RIDEV_CAPTUREMOUSE, RIDEV_NOHOTKEYS, RIDEV_APPKEYS): Add constants,
7062         for use in RAWINPUTDEVICE.
7063
7064         * include/winuser.h [_WIN32_WINNT >= 0x0501]
7065         (GetRawInputDeviceInfo[AW]): Ooops... there are
7066         ANSI/Unicode versions of this function.
7067
7068         * lib/user32.def (GetRawInputDeviceInfo[AW]): Ooops... there
7069         are ANSI/Unicode versions of this function.
7070
7071 2003-09-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7072
7073         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIM_TYPEMOUSE,
7074         RIM_TYPEKEYBOARD, RIM_TYPEHID, MOUSE_MOVE_RELATIVE,
7075         MOUSE_MOVE_ABSOLUTE, MOUSE_VIRTUAL_DESKTOP,
7076         MOUSE_ATTRIBUTES_CHANGED, RI_MOUSE_LEFT_BUTTON_DOWN,
7077         RI_MOUSE_LEFT_BUTTON_UP, RI_MOUSE_RIGHT_BUTTON_DOWN,
7078         RI_MOUSE_RIGHT_BUTTON_UP, RI_MOUSE_MIDDLE_BUTTON_DOWN,
7079         RI_MOUSE_MIDDLE_BUTTON_UP, RI_MOUSE_BUTTON_1_DOWNT_BUTTON_DOWN,
7080         RI_MOUSE_BUTTON_1_UP, RI_MOUSE_BUTTON_2_DOWNHT_BUTTON_DOWN,
7081         RI_MOUSE_BUTTON_2_UP, RI_MOUSE_BUTTON_3_DOWNDLE_BUTTON_DOWN,
7082         RI_MOUSE_BUTTON_3_UP, RI_MOUSE_BUTTON_4_DOWN,
7083         RI_MOUSE_BUTTON_4_UP, RI_MOUSE_BUTTON_5_DOWN,
7084         RI_MOUSE_BUTTON_5_UP, RI_MOUSE_WHEEL, KEYBOARD_OVERRUN_MAKE_CODE,
7085         RI_KEY_MAKE, RI_KEY_BREAK, RI_KEY_E0, RI_KEY_E1,
7086         RI_KEY_TERMSRV_SET_LED, RI_KEY_TERMSRV_SHADOW, RID_INPUT,
7087         RID_HEADER, RIDI_PREPARSEDDATA, RIDI_DEVICENAME,
7088         RIDI_DEVICEINFO): Add constants.
7089
7090         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RAWINPUTHEADER,
7091         RAWMOUSE, RAWKEYBOARD, RAWHID, RAWINPUT, RAWINPUTDEVICE,
7092         RAWINPUTDEVICELIST): Add structures.
7093
7094         * include/winuser.h [_WIN32_WINNT >= 0x0501] (DefRawInputProc,
7095         GetRawInputBuffer, GetRawInputData, GetRawInputDeviceInfo,
7096         GetRawInputDeviceList, GetRegisteredRawInputDevices): Add functions.
7097
7098         * lib/user32.def (DefRawInputProc, GetRawInputBuffer,
7099         GetRawInputData, GetRawInputDeviceInfo, GetRawInputDeviceList,
7100         GetRegisteredRawInputDevices): Add functions.
7101
7102 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7103
7104         * include/winable.h (BlockInput): Add function.
7105
7106         * include/winable.h (WS_ACTIVECAPTION): Add constant.
7107         For use with WINDOWINFO structure.
7108
7109         * include/winuser.h [_WIN32_WINNT >= 0x0500] (LockWorkStation):
7110         Add function.
7111
7112         * include/winuser.h [_WIN32_WINNT >= 0x0501] (IsWinEventHookInstalled):
7113         Add function.
7114
7115         * include/winuser.h [WINVER >= 0x0500] (UnhookWinEvent):
7116         Add function...
7117
7118         * include/winable.h [WINVER < 0x0500] (UnhookWinEvent):
7119         ...and duplicate.
7120
7121         * include/winuser.h [_WIN32_WINNT >= 0x0403] (SendInput):
7122         Guard function...
7123
7124         * include/winable.h [_WIN32_WINNT < 0x0403] (SendInput):
7125         ...and duplicate.
7126
7127         * include/winuser.h [WINVER >= 0x0500] (NotifyWinEvent):
7128         Guard function...
7129
7130         * include/winable.h [WINVER < 0x0500] (NotifyWinEvent):
7131         ...and duplicate.
7132
7133         * include/winuser.h [WINVER >= 0x0500] (MOUSEINPUT, KEYBDINPUT,
7134         HARDWAREINPUT, INPUT): Guard structures...
7135
7136         * include/winable.h [WINVER < 0x0500] (MOUSEINPUT, KEYBDINPUT,
7137         HARDWAREINPUT, INPUT): ...and duplicate.
7138
7139         * include/winuser.h [_WIN32_WINNT >= 0x0403] (INPUT_MOUSE,
7140         INPUT_KEYBOARD, INPUT_HARDWARE): Guard constants...
7141
7142         * include/winable.h [_WIN32_WINNT < 0x0403] (INPUT_MOUSE,
7143         INPUT_KEYBOARD, INPUT_HARDWARE): ...and duplicate.
7144
7145         * include/winuser.h: Move around some lines. Reformat according
7146         to recommended or dominant style. Remove FAR keyword.
7147
7148         * include/winable.h: Move around some lines.
7149
7150         * lib/user32.def (BlockInput, IsWinEventHookInstalled,
7151         LockWorkStation, UnhookWinEvent): Add functions.
7152
7153 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7154
7155         * include/winuser.h [_WIN32_WINNT >= 0x0501] (PrintWindow,
7156         PW_CLIENTONLY): Add function and constant.
7157
7158         * lib/user32.def (PrintWindow): Add function.
7159
7160 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7161
7162         * include/winuser.h (RealGetWindowClassA[AW]): Add function.
7163
7164         * lib/user32.def (RealGetWindowClassA[AW]): Add function.
7165
7166 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7167
7168         * include/winuser.h [WINVER >= 0x0500] (RegisterDeviceNotification[AW],
7169         DEVICE_NOTIFY_WINDOW_HANDLE, DEVICE_NOTIFY_SERVICE_HANDLE,
7170         DEVICE_NOTIFY_ALL_INTERFACE_CLASSES): Add function and constants.
7171
7172         * lib/user32.def (RegisterDeviceNotification[AW]): Add function.
7173
7174 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7175
7176         * include/winuser.h [WINVER >= 0x0500] (SetWinEventHook, WINEVENTPROC,
7177         WINEVENT_OUTOFCONTEXT, WINEVENT_SKIPOWNTHREAD, WINEVENT_SKIPOWNPROCESS,
7178         WINEVENT_INCONTEXT): Add function, typedef, and constants.
7179
7180         * include/winable.h [WINVER < 0x0500] (SetWinEventHook, WINEVENTPROC,
7181         WINEVENT_OUTOFCONTEXT, WINEVENT_SKIPOWNTHREAD, WINEVENT_SKIPOWNPROCESS,
7182         WINEVENT_INCONTEXT): Add function, typedef, and constants.
7183
7184         * include/winuser.h [_WIN32_WINNT >= 0x0500] (UserHandleGrantAccess):
7185         Add function.
7186
7187         * lib/user32.def (SetWinEventHook, UserHandleGrantAccess):
7188         Add functions.
7189
7190 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7191
7192         * include/winnt.h (ACE_INHERITED_OBJECT_TYPE_PRESENT,
7193         ACE_OBJECT_TYPE_PRESENT): Add constants.
7194         For use with OBJECTS_AND_NAME structure.
7195
7196 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7197
7198         * include/aclapi.h [_WIN32_WINNT >= 0x0501] (GetInheritanceSource[AW]):
7199         Add functions. Don't know what PFN_OBJECT_MGR_FUNCTS is so use
7200         void* instead.
7201
7202         * include/accctrl.h [_WIN32_WINNT >= 0x0501] (INHERITED_FROM[AW],
7203         PINHERITED_FROM[AW]): Add structures.
7204
7205         * lib/user32.def (GetInheritanceSource[AW]): Add functions.
7206
7207 2003-09-26  Corinna Vinschen  <corinna@vinschen.de>
7208
7209         * include/winuser.h (FLASHWINFO, PFLASHWINFO): Define for 98/Me, too.
7210
7211 2003-09-25  Danny Smith  <dannysmith@users.sourceforge.net>
7212
7213         * lib/version.def (LIBRARY): Quote name.
7214
7215 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7216
7217         * include/winuser.h (GetClipboardSequenceNumber): Add functions
7218         and constants.
7219
7220         * include/winuser.h (GetGuiResources, GR_GDIOBJECTS,
7221         GR_USEROBJECTS): Add functions and constants.
7222
7223         * include/winuser.h (GetMouseMovePointsEx, GMMP_USE_DISPLAY_POINTS,
7224         GMMP_USE_HIGH_RESOLUTION_POINTS): Add functions and constants.
7225
7226         * include/winuser.h (InSendMessageEx, ISMEX_NOSEND, ISMEX_CALLBACK,
7227         ISMEX_NOTIFY, ISMEX_REPLIED, ISMEX_SEND): Add functions and
7228         constants.
7229
7230         * lib/user32.def (GetClipboardSequenceNumber, GetGuiResources,
7231         GetMouseMovePointsEx, InSendMessageEx): Add functions.
7232
7233 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7234
7235         * include/winuser.h (BroadcastSystemMessage, BroadcastSystemMessageA,
7236         BroadcastSystemMessageW, BroadcastSystemMessageEx,
7237         BroadcastSystemMessageExA, BroadcastSystemMessageExW,
7238         BSMINFO, BSF_ALLOWSFW, BSF_SENDNOTIFYMESSAGE, BSF_LUID,
7239         BSF_RETURNHDESK): Add functions and constants.
7240
7241         * include/winuser.h (EnumDisplaySettingsEx, EnumDisplaySettingsExA,
7242         EnumDisplaySettingsExW, EDS_RAWMODE): Add functions and constant.
7243
7244         * include/winuser.h (IsGUIThread, IsHungAppWindow, FlashWindowEx,
7245         GetProcessDefaultLayout, SetProcessDefaultLayout,
7246         RealChildWindowFromPoint, SetProcessDefaultLayout,
7247         SwitchToThisWindow): Add functions.
7248
7249         * lib/user32.def (BroadcastSystemMessageA, BroadcastSystemMessageW,
7250         BroadcastSystemMessageExA, BroadcastSystemMessageExW,
7251         EnumDisplaySettingsExA, EnumDisplaySettingsExW, FlashWindowEx,
7252         GetProcessDefaultLayout, IsGUIThread, IsHungAppWindow,
7253         RealChildWindowFromPoint, SetProcessDefaultLayout,
7254         SwitchToThisWindow): Add function.
7255
7256 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7257
7258         * include/winuser.h (DeregisterShellHookWindow): Add function.
7259
7260         * include/winuser.h [_WIN32_WINNT >= 0x0500] (EndTask): Add function.
7261
7262         * lib/user32.def (EndTask): Add function.
7263
7264         * include/winuser.h (WINVER, _WIN32_WINNT): It's better (?) to
7265         use _WIN32_WINNT instead of WINVER to test for Windows 2000.
7266
7267         * include/winable.h: Reorder target macros.
7268
7269         * lib/*.def: Cleanup.
7270
7271 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7272
7273         * include/winuser.h [WINVER >= 0x0500] (AnimateWindow): Add
7274         function.
7275
7276         * lib/user32.def (AnimateWindow): Add function. By the way
7277         there are ~ 140 symbols missing from this file when comparing
7278         to user32.dll on Windows XP.
7279
7280 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7281
7282         * include/winuser.h [WINVER >= 0x0500] (AW_SLIDE, AW_ACTIVATE,
7283         AW_BLEND, AW_HIDE, AW_CENTER, AW_HOR_POSITIVE, AW_HOR_NEGATIVE,
7284         AW_VER_POSITIVE, AW_VER_NEGATIVE): Add constants. For use by
7285         AnimateWindow().
7286
7287 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7288
7289         * include/winuser.h [WINVER >= 0x0500] (GetGUIThreadInfo,
7290         LPGUITHREADINFO): Add function and associated typedef...
7291
7292         * include/winable.h [WINVER < 0x0500] (GetGUIThreadInfo,
7293         LPGUITHREADINFO): ...and duplicate them in <winable.h> as
7294         seems to be required on older versions of Windows.
7295
7296 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7297
7298         * include/GL/glu.h (gluErrorUnicodeStringWIN): Add macro
7299         function. MSDN suggests using gluErrorUnicodeStringWIN
7300         instead of gluErrorString, as it allows both ANSI and Unicode
7301         error strings.
7302
7303         * include/GL/glu.h (gluErrorUnicodeStringEXT): Make the
7304         returned pointer const for consistency reasons.
7305
7306 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7307
7308         * include/GL/glu.h (gluErrorUnicodeStringEXT): Add function.
7309         Function exists in glu32.def but is undocumented on MSDN.
7310         A Google search came up with this declaration.
7311
7312 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7313
7314         * include/GL/glu.h: Rewritten from scratch. Started from GLU 1.3
7315         headers from OpenGL Sample Implementation. Windows ships with
7316         GLU 1.2 so some constants and functions were removed. Then some
7317         typedef's and function declarations were reworked to look like
7318         the previous GL/glu.h.
7319
7320 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7321
7322         * include/uxtheme.h (PROPERTYORIGIN): the documentation of
7323         PROPERTYORIGIN suggests it's `PROPERTYORIGIN' but experimentation
7324         suggests it's actually `enum PROPERTYORIGIN'. Keep both.
7325
7326         * include/uxtheme.h (THEME_SIZE, THEMESIZE): MSDN suggests
7327         it's either `THEME_SIZE' or `THEMESIZE' but experimentation
7328         suggests it's actually `enum THEMESIZE'. Keep `THEME_SIZE'
7329         and `enum THEMESIZE'.
7330
7331 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7332
7333         * include/uxtheme.h: New file.
7334         * include/tmschema.h: New file.
7335         * include/uxtheme.def: New file.
7336         * lib/test.c: Include uxtheme.h, tmschema.h.
7337
7338 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7339
7340         * include/winuser.h (KEYEVENTF_UNICODE, KEYEVENTF_SCANCODE):
7341         Add defines.
7342
7343 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7344
7345         * include/winable.h [_WIN32_WINNT < 0x0403] (INPUT_MOUSE,
7346         INPUT_KEYBOARD, INPUT_HARDWARE): Duplicate defines in
7347         <winable.h> as seems to be required on older versions of
7348         Windows.
7349
7350 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7351
7352         * include/winuser.h [WINVER >= 0x0500] (CHILDID_SELF,
7353         GUI_CARETBLINKING, GUI_INMOVESIZE, GUI_INMENUMODE,
7354         GUI_SYSTEMMENUMODE, GUI_POPUPMENUMODE, GUI_16BITTASK):
7355         Add defines, the last one only on Windows XP...
7356
7357         * include/winable.h [WINVER < 0x0500] (CHILDID_SELF,
7358         GUI_CARETBLINKING, GUI_INMOVESIZE, GUI_INMENUMODE,
7359         GUI_SYSTEMMENUMODE, GUI_POPUPMENUMODE): ...and duplicate
7360         them in <winable.h> as seems to be required on older
7361         versions of Windows.
7362
7363 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
7364
7365         * include/winuser.h [WINVER >= 0x0500] (GUITHREADINFO,
7366         OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR, OBJID_MENU,
7367         OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL, OBJID_SIZEGRIP,
7368         OBJID_CARET, OBJID_CURSOR, OBJID_ALERT, OBJID_SOUND): Bring
7369         back into <winuser.h>...
7370
7371         * include/winable.h [WINVER < 0x0500] (GUITHREADINFO,
7372         OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR, OBJID_MENU,
7373         OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL, OBJID_SIZEGRIP,
7374         OBJID_CARET, OBJID_CURSOR, OBJID_ALERT, OBJID_SOUND): ...and
7375         comment out in <winable.h>. MSDN may say <winable.h> but this
7376         breaks many programs. It seems it used to be <winable.h> on
7377         older versions of Windows.
7378
7379 2003-09-17  Danny Smith  <dannysmith@users.sourceforge.net>
7380
7381         * include/winuser.h (UpdateLayeredWindow): Protect against NOGDI.
7382         Thanks to Will Levine  <willll@users.sourceforge.net>
7383
7384 2003-09-15  Danny Smith  <dannysmith@users.sourceforge.net>
7385
7386         * include/ws2spi.h (LPWSPBIND): Change CONST LPSOCKADDR to
7387         const struct sockaddr*.
7388         (LPWSPCONNECT): Likewise.
7389         (LPWSPJOINLEAF): Likewise.
7390         (LPWSPSENDTO): Likewise.
7391         Tanks to Sebastian Nowak  <snowak1@users.spourceforge.net>
7392
7393 2003-09-15  Filip Navara  <xnavara@volny.cz>
7394
7395         * include/commctrl.h (TCIS_BUTTONPRESSED, TCIS_HIGHLIGHTED):
7396         Add definitions.
7397
7398 2003-09-15  Sascha Brawer  <brawer@dandelis.ch>
7399
7400         * include/winuser.h (DISPLAY_DEVICE_ATTACHED_TO_DESKTOP,
7401         DISPLAY_DEVICE_PRIMARY_DEVICE, DISPLAY_DEVICE_MIRRORING_DRIVER,
7402         DISPLAY_DEVICE_VGA_COMPATIBLE, DISPLAY_DEVICE_REMOVABLE,
7403         DISPLAY_DEVICE_MODESPRUNED): Define constants.
7404         (ChangeDisplaySettingsEx[A,W]): Add prototype.
7405
7406         * lib/user32.def (ChangeDisplaySettingsEx[A,W]): Add exports.
7407         (EnumDisplayDevices[A,W]): Likewise.
7408
7409 2003-09-15  Danny Smith  <dannysmith@users.sourceforge.net>
7410
7411         * include.commctrl.h (_WIN32_WINNT): Change _WXP to 0x0501,
7412         throughout.
7413
7414 2003-09-13  Danny Smith  <dannysmith@users.sourceforge.net>
7415
7416         * include/olectl.h (TEXTMETRICOLE, LPERRORLOG, LPPROPERTYBAG,
7417         LPENUMCONNECTIONPOINTS, LPCONNECTIONPOINT, LPENUMCONNECTIONS,
7418         LPPROPERTYPAGESITE, LPFONT, LPFONTDISP, OLE_COLOR, HIMETRIC,
7419         OLE_YPOS_HIMETRIC, OLE_XSIZE_HIMETRIC, OLE_YSIZE_HIMETRIC,
7420         OLE_YSIZE_CONTAINER, OLE_HANDLE, POINTF,LPPOINTF, CONTROLINFO,
7421         LPCONTROLINFO, CONNECTDATA, LPCONNECTDATA, LICINFO, LPLICINFO,
7422         CAUUID, LPCAUUID, CALPOLESTR, LPCALPOLESTR, CADWORD, LPCADWORD,
7423         PROPPAGEINFO, LPPROPPAGEINFO): Remove from here ...
7424         * include/ocidl.h: (TEXTMETRICOLE, LPERRORLOG, LPPROPERTYBAG,
7425         LPENUMCONNECTIONPOINTS, LPCONNECTIONPOINT, LPENUMCONNECTIONS,
7426         LPPROPERTYPAGESITE, LPFONT, LPFONTDISP, OLE_COLOR, HIMETRIC,
7427         OLE_YPOS_HIMETRIC, OLE_XSIZE_HIMETRIC, OLE_YSIZE_HIMETRIC,
7428         OLE_YSIZE_CONTAINER, OLE_HANDLE, POINTF, LPPOINTF, CONTROLINFO,
7429         LPCONTROLINFO, CONNECTDATA, LPCONNECTDATA, LICINFO, LPLICINFO,
7430         CAUUID, LPCAUUID, CALPOLESTR, LPCALPOLESTR, CADWORD, LPCADWORD,
7431         PROPPAGEINFO, LPPROPPAGEINFO): ... to here, for consistency
7432         with documentation.
7433         * include/olectl.h: Do #include <ocidl.h>.
7434         * include/ocidl.h: Don't #include <olectl.h>.
7435
7436 2003-09-13  Danny Smith  <dannysmith@users.sourceforge.net>
7437
7438         * include/winuser.h (_WIN32_WINNT, _WIN32_WINDOWS, WINVER):
7439         Change guards to use numeric constants, throughout.
7440
7441 2003-09-15  Earnie Boyd  <earnie@users.sf.net>
7442
7443         * include/w32api.h: Increment version to 2.5.
7444         * Makefile.in: Ditto.
7445
7446 2003-09-08  Justin Forest  <vhex@users.sourceforge.net>
7447
7448         * include/winuser.h (PM_QS_INPUT, PM_QS_POSTMESSAGE,
7449         PM_QS_PAINT, PM_QS_SENDMESSAGE): Add defines.
7450
7451 2003-09-08  Filip Navara  <xnavara@volny.cz>
7452
7453         * include/wingdi.h (GRADIENT_FILL_RECT_H, GRADIENT_FILL_RECT_V,
7454         GRADIENT_FILL_TRIANGLE, GRADIENT_FILL_OP_FLAG): Add defines.
7455
7456 2003-09-05  Earnie Boyd  <earnie@users.sf.net>
7457
7458         * include/w32api.h (_NT5, etc): Reverse the changes of 2003-07-01.
7459         * include/winbase.h (_NT5, etc): Ditto.
7460
7461 2003-09-02  Bart Oldeman  <bartoldeman@users.sourceforge.net>
7462
7463         * lib/snmpapi.def (LIBRARY) Add library name.
7464         Remove '\r', throughout.
7465         * lib/wsnmp32.def: Remove '\r', throughout.
7466         * lib/igmpagnt.def: Likewise.
7467
7468 2003-08-29  Steve Cleary  <scleary@jerviswebb.com>
7469
7470         * include/winuser.h (QS_ALLPOSTMESSAGE, QS_RAWINPUT): Add defines.
7471         (QS_INPUT, QS_ALLINPUT, QS_ALLEVENTS): Adjust by OR'ing with
7472         QS_RAWINPUT for _WIN32_WINNT >= 0x0501.
7473         (MWMO_*): Add flags.
7474
7475         * include/wincrypt.h (MS_ENHANCED_PROV[AW], MS_STRONG_PROV[AW],
7476         MS_DEF_RSA_SIG_PROV[AW], MS_DEF_RSA_SCHANNEL_PROV[AW],
7477         MS_DEF_DSS_PROV[AW], MS_DEF_DSS_DH_PROV[AW], MS_ENH_DSS_DH_PROV[AW],
7478         MS_DEF_DH_SCHANNEL_PROV[AW], MS_SCARD_PROV[AW]): Add definitions.
7479
7480 2003-08-26  Danny Smith  <dannysmith@users.sourceforge.net>
7481
7482         * lib/test.c: Add vfw.h to includes.
7483         * include/mmsystem.h: Add #ifndef guard to definition of
7484         mmioFOURCC macro.
7485         * include/vfw.h: Protect __OBJC__ from COM declarations.
7486
7487 2003-08-26  Filip Navara  <xnavara@volny.cz>
7488
7489         * include/vfw.h: New file.
7490
7491 2003-08-26  Filip Navara  <xnavara@volny.cz>
7492
7493         * include/ddk/winddk.h (RTL_REGISTRY_*): Add defines.
7494         (IoSetCompletionRoutine): Cast _CompletionRoutine arg to
7495         PIO_COMPLETION_ROUTINE.
7496
7497 2003-08-26  Danny Smith  <dannysmith@users.sourceforge.net>
7498
7499         * lib/test.c: Add snmp.h, winsnmp.h amd mgmtapi.h to
7500         includes.
7501
7502 2003-08-26  Filip Navara  <xnavara@volny.cz>
7503
7504         * include/snmp.h: New file.
7505         * include/winsnmp.h: New file.
7506         * include/mgmtapi.h: New file.
7507         * lib/snmpapi.def: New file.
7508         * lib/wsnmp32.def: New file.
7509         * lib/igmpagnt.def: New file.
7510         * lib/mgmtapi.def (SnmpMgrCtl) Add stub.
7511         (SnmpMgrGetTrapEx): Ditto.
7512         (SnmpMgrMIB2Disk): Remove.
7513         (dbginit): Remove.
7514
7515 2003-08-25  Steven Edwards  <Steven_Ed4153@yahoo.com>
7516
7517         * include/ddk/ntifs.h: Change all C++ style comments to C.
7518         * include/GL/gl.h: Ditto.
7519
7520 2003-08-25  Martin Fuchs  <Martin-Fuchs@gmx.net>
7521
7522         * include/shlobj.h (SFGAO_GHOSTED): Correct.
7523         (SFGAO_HIDDEN): Add define.
7524
7525 2003-08-25  Filip Navara  <xnavara@volny.cz>
7526
7527         * include/commctrl.h (ILCF_*): Add defines.
7528         (ILD_*): Ditto.
7529         (HDS_*): Ditto.
7530         (IPN_FIRST, IPN_LAST): Cast to UINT.
7531         (SBN_FIRST, SBN_LAST): Add defines.
7532         (PGN_*): Ditto.
7533         (HDF_JUSTIFYMASK): Fix typo.
7534         (HDM_*): Add defines.
7535         (HICF_*): Ditto.
7536         (I_INDENTCALLBACK,I_IMAGENONE): Ditto.
7537         (TBSTATE_MARKED): Add define.
7538         (TBSTYLE_EX_*): Add defines.
7539         (TBCDRF_*): Ditto.
7540         (IDB_HIST_SMALL_COLOR,IDB_HIST_LARGE_COLOR): Ditto.
7541         (TB_*): Ditto.
7542         (TBN_*): Ditto.
7543         (TBNRF_*): Ditto.
7544         (TTF_*): Ditto.
7545         (TBCD_*): Ditto.
7546         (TBDDRET_*): Ditto.
7547         (TBIMHT_*): Ditto.
7548         (TTM_*): Ditto.
7549         (UDM_*): Ditto.
7550         (TBIF_BYINDEX): Define as hex constant.
7551         (CDIS_*): Add defines.
7552         (CDDS_SUBITEM): Add define.
7553         (LVIF_*): Add defines.
7554         (LVM_*): Ditto.
7555         (LVGIT_UNFOLDED): Add define.
7556         (TVM_): Add defines.
7557         (TVE_EXPANDPARTIAL): Add define.
7558         (TVGN_LASTVISIBLE): Ditto.
7559         (TVN_*): Add defines.
7560         (TVNRET_*): Add defines.
7561         (TCIF_STATE): Add define.
7562         (NM_TOOLTIPSCREATED): Ditto.
7563         (CCM_*): Add defines.
7564         (INFOTIPSIZE): Add numeric value.
7565         (ODT_LISTVIEW): Ditto.
7566         (MCM_GETMAXTODAYWIDTH): Ditto.
7567         (MCHT_*): Add defines.
7568         (UDM_SETRANGE32,UDM_GETRANGE32): Define in terms of WM_USER.
7569         (PGF_*): Add defines.
7570         (PGM_*): Ditto.
7571         (TBINSERTMARK): Add structure.
7572         (LPIMAGEINFO) Add typedef.
7573         (LPHDHITTESTINFO): Ditto.
7574         (NMLVGETINFOTIP[AW]: Add structures.
7575         (NMTBCUSTOMDRAW): Add structure.
7576         (TTTOOLINFOA_V*_SIZE): Add macros.
7577         (TTTOOLINFOW_V1_SIZE): Ditto.
7578         (IMAGELISTDRAWPARAMS): Add new members for WXP.
7579         (LVITEM[AW]: Ditto.
7580         (TCITEM[AW]):Ditto.
7581         (CCSIZEOF_STRUCT): Correct macro definition.
7582         (ListView_*): Add new macros.
7583         (HIMAGELIST): Correct typedef.
7584         (HTREEITEM): Ditto.
7585
7586 2003-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
7587
7588         * commctrl.h (TC_HITTESTINFO): Remove. Add defines for
7589         TCHITTESTINFO for backward compatibility.
7590         (TC_ITEM[AW]): Rename to TCITEM[AW]. Add defines for backward
7591         compatibility.
7592
7593 2003-08-24   Danny Smith  <dannysmith@users.sourceforge.net>
7594
7595         * include/objidl.h (COBJMACROS): Define macros only
7596         if using C interace.
7597         * include/unknwn.h: Ditto.
7598         * include/comcat.h: Ditto.
7599
7600 2003-08-24  Filip Navara  <xnavara@volny.cz>
7601
7602         * include/prsht.h (PSH_WIZARDHASFINISH, PSH_WIZARD_LITE,
7603         PSH_NOCONTEXTHELP): Define.
7604         (PSH_WIZARD97): Fix definition for _WIN32_IE >= 0x500.
7605         * include/winuser.h (DFCS_TRANSPARENT, DFCS_HOT): Define.
7606         (LPDLGTEMPLATE[AW]): Add typedefs.
7607
7608 2003-08-22  Filip Navara  <xnavara@volny.cz>
7609
7610         * include/aclapi.h (BuildImpersonateExplicitAccessWithName[AW]):
7611         Add prototypes.
7612         BuildImpersonateTrustee[AW]): Add prototypes.
7613         GetMultipleTrustee[AW]): Add prototypes.
7614         GetMultipleTrusteeOperation[AW]): Add prototypes.
7615
7616 2003-08-22   Danny Smith  <dannysmith@users.sourceforge.net>
7617
7618         * include/winnt.h (IMAGE_SUBSYSTEM_XBOX): Add define.
7619
7620 2003-08-22  Mihai Preda  <mihai_preda@users.sourceforge.net>
7621
7622         * include/shlobj.h (IPersistFolder::GetClassID):
7623         Correct declaration.
7624         (CMF_*) Add missing defines.
7625
7626 2003-08-22   Danny Smith  <dannysmith@users.sourceforge.net>
7627
7628         * include/winuser.h (DC_BUTTONS): Add define.
7629
7630 2003-08-22  Andrew Greenwood  <lists@silverblade.co.uk>
7631
7632         * include/winuser.h (DC_GRADIENT): Add define.
7633
7634 2003-08-22  Martin Fuchs  <Martin-Fuchs@gmx.net>
7635
7636         * include/commctrl.h (BTNS_*): Define BTNS_* as successors to the
7637         older TBSTYLE_* constants.
7638
7639 2003-08-18  Danny Smith  <dannysmith@users.sourceforge.net>
7640
7641         * include/commctrl.h (TB_*) Group defines together.
7642
7643 2003-08-18  Martin Fuchs  <Martin-Fuchs@gmx.net>
7644
7645         * include/winuser.h (ICON_SMALL2): Define.
7646         * include/commctrl.h (TB_SETBUTTONWIDTH, TB_SETDRAWTEXTFLAGS):
7647         Define.
7648         * include/shlobj.h (SHDRAGIMAGE): Define structure.
7649         (IDragSourceHelper) Define interface.
7650         (IDropTargetHelper): Likewise.
7651         (IExtractIcon): Unicode it.
7652         (ICommDlgBrowser): Use IShellView type as param in OnDefaultCommand,
7653         OnStateChange and IncludeObject methods.
7654
7655 2003-08-17  Martin Fuchs  <Martin-Fuchs@gmx.net>
7656
7657         * include/commctrl.h (TreeView_GetScrollTime,
7658         TreeView_SetScrollTime): Define macros.
7659         * include/winuser.h (GetShellWindow): Add prototype.
7660         * include/objidl.h (STGMEDIUM): Correct lpszFileName type.
7661
7662 2003-08-15  Martin Fuchs  <Martin-Fuchs@gmx.net>
7663
7664         * include/shguid.h (CLSID_DragDropHelper, IID_IDropTargetHelper,
7665         IID_IDragSourceHelper): Declare.
7666         * lib/shell32.c (CLSID_DragDropHelper, IID_IDropTargetHelper,
7667         IID_IDragSourceHelper): Define.
7668
7669 2003-08-15  Andrew Greenwood  <lists@silverblade.co.uk>
7670
7671         * include/wingdi.h (DEVMODE[AW]) Correct structure definition.
7672         * include/ddk/ntapi.h (LPC_TYPE): Add LPC_CONNECTION_REFUSED.
7673         * include/ddk/winddk.h (IRP_*): Add constants as anonymous enum.
7674
7675 2003-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
7676
7677         * lib/uuid.c (CGID_Explorer, CGID_ShellDocView,
7678         CGID_ShellServiceObject): Remove definitions.
7679         * lib/shell32.c (CGID_ShellServiceObject): Add definition.
7680
7681 2003-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
7682
7683         * include/shlobj.h (SHELLSTATE): Add structure.
7684         (SHGetSetSettings): Add prototype.
7685         (SHGetSettings): Add prototype.
7686         * lib/shell32.def (SHGetSetSettings): Add stub.
7687
7688 2003-08-10  Phil Krylov  <likewolf@users.sourceforge.net>
7689
7690         * include/commctrl.h (HDM_ORDERTOINDEX): Add define.
7691         (Header_OrderToIndex): Add macro.
7692         (Header_GetOrderArray): Add macro.
7693
7694         * include/commdlg.h (FR_MATCHALEFHAMZA,
7695         FR_MATCHDIAC, FR_MATCHKASHIDA): Add defines.
7696
7697 2003-08-10  Martin Fuchs  <Martin-Fuchs@gmx.net>
7698
7699         * include/commctrl.h (TVM_GETSCROLLTIME,
7700         TVM_SETSCROLLTIME): Add defines.
7701
7702 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7703
7704         * include/shlobj.h (SHELLFLAGSTATE): Add structure.
7705         (SHGetInstanceExplorer): Correct return type.
7706         (SHGetFolderPath[AW]): Likewise.
7707         Thanks to Magnus Olsen  <greatlord@sourceforge.users.net>
7708         for report.
7709
7710 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7711
7712         * lib/test.c: Include winldap.h, ntldap.h, winber.h.
7713
7714 2003-08-01  Filip Navara  <xnavara@volny.cz>
7715
7716         * include/winldap.h: New file.
7717         * include/ntldap.h: New file.
7718         * include/winber.h: New file.
7719         * lib/winldap32.def: New file.
7720
7721 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7722
7723         * include/ddk/atm.h: Remove stray '.';
7724
7725 2003-08-01  Gisle Vanem  <gvanem@broadpark.no>
7726
7727         * include/ddk/winddk.h: Remove trailing ';' from macros,
7728         throughout. Add () around defines with cast returns, throughout.
7729
7730 2003-07-31  Martin Fuchs  <Martin-Fuchs@gmx.net>
7731
7732         * include/shlobj.h (SFGAO_COMPRESSED): Add define.
7733         (SFGAOF, SHGDNF): Add typedef's.
7734         (SHCONTF): Extend enum.
7735
7736 2003-07-31  Danny Smith  <dannysmith@users.sourceforge.net>
7737
7738         * include/shellapi.h: Include all structs within pshpack2.h/
7739         poppack.h block.
7740
7741 2003-07-26  Danny Smith  <dannysmith@users.sourceforge.net>
7742
7743         * include/winuser.h (ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK,
7744         LWA_COLORKEY, LWA_ALPHA): Guard with _WIN32_WINNT,
7745         _WIN32_WINDOWS, not WINVER.
7746         (AllowSetForegroundWindow,LockSetForegroundWindow,
7747         SetLayeredWindowAttributes): Likewise.
7748         (GetLayeredWindowAttributes,UpdateLayeredWindow): Add prototypes.
7749         * lib/user32.def (GetLayeredWindowAttributes,UpdateLayeredWindow):
7750         Add stubs.
7751
7752 2003-07-26  Eric R. Krause  <ekrause_98@users.sourceforge.net>
7753
7754         * include/objidl.h (IMalloc): Fix typo.
7755
7756 2003-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
7757
7758         * include/dkk/ntifs.h: Fix typo in guard for
7759         #pragma GCC system_header.
7760
7761 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7762
7763         * include/objidl.h (PropVariant): Add CHAR cVal field
7764         to union.
7765         (FMTID_SummaryInformation, FMTID_DocSummaryInformation,
7766         FMTID_UserDefinedProperties): Declare.
7767
7768 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7769
7770         * include/winbase.h (GetModuleHandleEx[AW]): Add prototypes.
7771
7772 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7773
7774         * include/winbase.h (DUPLICATE_CLOSE_SOURCE,
7775         DUPLICATE_SAME_ACCESS): Remove defines.
7776         (HANDLE_FLAG_INHERIT, HANDLE_FLAG_PROTECT_FROM_CLOSE): Sync with
7777         ddk/ntapi.h defines.
7778         (SEM_*) : Likewise.
7779         * include/winnt.h (COMPRESSION_*, ACCESS_*, SYSTEM_*): Sync with
7780         ddk/ntifs.h defines.
7781         (FILE_*): Likewise.
7782         (MEM_IMAGE, SEC_*): Likewise.
7783         (DUPLICATE_CLOSE_SOURCE, DUPLICATE_SAME_ACCESS,
7784         DUPLICATE_SAME_ATTRIBUTES): Sync with ddk/winddk.h defines.
7785         (TOKEN_*): Sync with ddk/ntifs.h defines.
7786         * include/ddk/ntapi.h: Add comments noting definitions in
7787         winbase.h.
7788         * include/ddk/ntifs.h: Add comments noting definitions in
7789         winnt.h.
7790         * include/ddk/winddk.h: Add comments noting definitions in
7791         winnt.h.
7792
7793 2003-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
7794
7795         * include/winnt.h (FILE_*): Sync with ddk/winddk.h.
7796         * include/winioctl.h (FILE_*): Sync with ddk/winddk.h.
7797
7798 2003-07-17  Pierre Humblet  <pierre.humblet@ieee.org>
7799
7800         * include/mmsystem.h (TIME_KILL_SYNCHRONOUS): Add define.
7801
7802 2003-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
7803
7804         Clean up warnings in ddk.
7805
7806         * include/ddk/atm.h (_ATM_AAL_OOB_INFO): Add _ANONYMOUS_UNION,
7807         conditional on  __cplusplus.
7808         * include/ddk/scsi.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7809         defines, throughout.
7810         (_CDB): Add _ANONYMOUS_UNION, conditional on __cplusplus.
7811         * include/ddk/cfg.h (_PNP_VETO_TYPE): Remove extra comma.
7812         * include/ddk/cfgmgr32.h: Change C++ comment style to ISO C.
7813         * include/ddk/ddkmapi.h (_DDLOCKOUT): Add _ANONYMOUS_UNION defines.
7814         * include/ddk/hidpi.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7815         defines, throughout.
7816         * include/ddk/ndis.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7817         defines, throughout. Remove trailing semicolon from *_S 'structure'
7818         macro expansion, throughout. Remove trailing semicolon from
7819         DECLARE_UNKNOWN_STRUCT macro expansion.
7820         * include/ddk/ndiswan.h (_NDIS_WAN_COMPRESS_INFO): Add
7821         _ANONYMOUS_UNION.
7822         * include/ddk/ntapi.h (_PROCESS_DEVICEMAP_INFORMATION,
7823         _PROCESS_SESSION_INFORMATION): Add _ANONYMOUS_UNION.
7824         * include/ddk/ntddcdrm.h (CDROM_TOC_CD_TEXT_DATA_BLOCK):
7825         Add _ANONYMOUS_UNION.
7826         * include/ddk/ntdddisk.h: Add _ANONYMOUS_UNION, throughout.
7827         * include/ddk/ntddmou.h:  Add _ANONYMOUS_UNION, throughout.
7828         * include/ddk/ntifs.h:  Add _ANONYMOUS_UNION, throughout.
7829         (ZwQueryObject): Change 2nd param to OBJECT_INFORMATION_CLASS, to
7830         match proto in ntapi.h.
7831         (ZwSetInformationObject): Likewise.
7832         * include/ddk/srb.h (SCSI_REQUEST_BLOCK): Add _ANONYMOUS_UNION.
7833         (SCSI_ADAPTER_CONTROL_TYPE): Add __extension__.
7834         * include/ddk/tdikrnl.h (TDI20_CLIENT_INTERFACE_INFO): Add
7835         _ANONYMOUS_UNION and _ANONYMOUS_STRUCT.
7836         * include/ddk/usb.h (USB): Add _ANONYMOUS_UNION.
7837         * include/ddk/usbcamdi.h (USBCAMD_CamControlFlags): Remove
7838         last comma.
7839         * include/ddk/video.h (STATUS_BLOCK): Add _ANONYMOUS_UNION.
7840         * include/ddk/winddk.h (DECLARE_INTERNAL_OBJECT): Remove
7841         trailing semicolon when expanding macro.
7842         (GENERAL_LOOKASIDE_S): Likewise.
7843         Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT, throughout.
7844         Change inline to __inline, throughout.
7845         * include/ddk/winnt4.h: Change inline to __inline, throughout.
7846
7847 2003-07-13  Casper S. Hornstrup  <chorns@users.sourceforge.net>
7848
7849         * include/ddk/ntifs.h (KeInsertQueueApc): Make return type
7850         BOOLEAN. Name parameter 4 PriorityBoost and make it of type
7851         KPRIORITY.
7852         * include/ddk/winddk.h (_KPCR): Put IDT field on next line.
7853         * include/ddk/winddk.h (_IO_STATUS_BLOCK, _IRP, _OWNER_ENTRY,
7854         _ERESOURCE, _IMAGE_INFO, _CREATE_DISK, _DISK_SIGNATURE, _KPCR_TIB):
7855         Apply _ANONYMOUS_UNION to anonymous unions and _ANONYMOUS_STRUCT
7856         to anonymous structs.
7857
7858 2003-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
7859
7860         * include/winnt.h (PVOID): Move to before HANDLE typedef.
7861
7862         * include/winuser.h (mouse_event): Correct type of fifth param,
7863         Thanks to: Andrew Jones <guln at users dot sourceforge dot net>
7864
7865 2003-07-11  Earnie Boyd  <earnie@users.sf.net>
7866
7867         * include/winnt.h (HANDLE): Define based on STRICT filter.
7868         (THREAD_BASE_PRIORITY_MIN): Use parens around negative value.
7869         (THREAD_BASE_PRIOIRTY_IDLE): Ditto.
7870
7871 2003-07-08  Danny Smith  <dannysmith@users.sourceforge.net>
7872
7873         * include/commctrl.h (NMTVDISPINFO[AW]): Replace obsolete struct
7874         names _TV_DISPINFO[AW] and typedefs. Add defines for backward
7875         compatability. Thanks to Magnus Olsen <greatlord@users.sf.net>
7876         for report.
7877
7878 2003-07-03  Earnie Boyd  <earnie@users.sf.net>
7879
7880         * config.guess, config.sub: Update with new versions from ftp.gnu.org.
7881
7882 2003-07-03  Luke Dunstan  <infidel@users.sf.net>
7883
7884         * include/commdlg.h (CommDlg_OpenSave_*): Add parentheses around
7885         macro arguments. Thanks to Tom Bishop <tombishop@users.sf.net>.
7886         * include/winuser.h (MONITOR_DEFAULTTONULL, MONITOR_DEFAULTTOPRIMARY,
7887         MONITOR_DEFAULTTONEAREST, MONITORINFOF_PRIMARY): Add defines.
7888         (TPM_RECURSE): Add guard for Win98/Win2K.
7889         Thanks to Magnus Olsen <greatlord@users.sf.net>.
7890
7891 2003-07-01  Earnie Boyd  <earnie@users.sf.net>
7892
7893         * include/basetyps.h (small, hyper): Change to __small and __hyper to
7894         avoid user namespace conflicts.
7895
7896 2003-07-01  Earnie Boyd  <earnie@users.sf.net>
7897
7898         * include/w32api.h (_NT4, _W98, _WME, _NT5, _W2000, _WXP, _W2003,
7899         _IE3, _IE4, _IE5, _IE6): Add definitions.
7900         * include/winbase.h (GetLongPathName[AW]): Add guard for OS >= NT5 or
7901         >= Win98.
7902         Change existing guards to use the above macro names as appropriate.
7903         * include/basetyps.h (__int32, __int16, __int8, small, hyper): Define.
7904         Note: Also added to mingw/include/_mingw.h.
7905
7906 2003-06-28  Steven Edwards  <Steven_Ed4153@yahoo.com>
7907
7908         * include/shlwapi.h (UrlGetLocationA, UrlGetLocationW,
7909         PathFindSuffixArrayA, PathFindSuffixArrayW,
7910         PathFindExtensionA, PathFindExtensionW, StrStrW
7911         StrStrA): Change unicode-macro'd LP[C]TSTR return values to
7912         explicit type.
7913
7914 2003-06-26  Mattia Barbon  <mbarbon@dsi.unive.it>
7915
7916         * include/richedit.h (PARAFORMAT2): Add definition.
7917         * include/richedit.h (PFA_*, PFE_*, PFM_*): Add some
7918         missing constants.
7919
7920 2003-06-17  Danny Smith  <dannysmith@users.sourceforge.net>
7921
7922         * include/shellapi.h (SHQUERYRBINFO): Add structure,
7923         (SHQueryRecycleBin[AW]. SHEmptyRecycleBin[AW]):Add prototypes.
7924         (SHERB_NOCONFIRMATION, SHERB_NOPROGRESSUI, SHERB_NOSOUND):
7925         Add defines. Thanks to Brett Hart <brett at ncubedtech dot com>
7926
7927 2003-06-17  Danny Smith  <dannysmith@users.sourceforge.net>
7928
7929         * include/winbase.h (GlobalCompact, GlobalFix, GlobalFlags,
7930         GlobalUnfix, GlobalUnWire, GlobalWire, LocalCompact,
7931         LocalFlags, LocalShrink, LockSegment, UnlockSegment): Add comment
7932         that these are obsolete no-ops.
7933
7934 2003-06-17  Bang Jun-Young  <junyoung@netbsd.org>
7935
7936         * include/winbase.h (GetProcessWorkingSetSize,
7937         GlobalCompact, LocalAlloc, LocalCompact, LocalReAlloc,
7938         LocalShrink, SignalObjectAndWait, WriteProcessMemory):
7939         Correct prototypes.
7940
7941 2003-06-18  Steven Edwards  <Steven_Ed4153@yahoo.com>
7942
7943         * include/winuser.h (TPM_RECURSE): Add define.
7944
7945 2003-06-06  Danny Smith  <dannysmith@users.sourceforge.net>
7946
7947         * lib/test.c: #include <powrprof.h>.
7948
7949 2003-06-06  James E. Lucas  <xelloss@sourceforge.net>
7950
7951         * include/powerprof.h: New file.
7952         * lib/powerprof.def: New file.
7953
7954 2003-06-06  Danny Smith  <dannysmith@users.sourceforge.net>
7955
7956         * include/winnt (SLIST_HEADER): Add C90 anonymous struct
7957         protection.
7958
7959 2003-06-05  Luke Dunstan  <infidel@users.sourceforge.net>
7960
7961         * include/winuser.h (WNDCLASS[AW], WNDCLASSEX[AW]): Change type of
7962         hInstance members to HINSTANCE.
7963         Thanks to: Brenden T. <brenden@rcsis.com>
7964
7965 2003-06-05  Bart Oldeman  <bartoldeman@users.sourceforge.net>
7966
7967         * include/lmaccess.h (UF_MNS_LOGON_ACCOUNT): Add define.
7968         * include/wingdi.h (LPRGBTRIPLE, LPRGBQUAD): Add typedefs.
7969
7970 2003-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
7971
7972         * include/ddk/ntpoapi.h (POWER_INFORMATION_LEVEL): Remove.
7973         * include/winnt.h (POWER_INFORMATION_LEVEL): Add.
7974         * include/ddk/winddk.h (SINGLE_LIST_ENTRY,SLIST_HEADER):
7975         Remove.
7976         * include/ddk/ndis.h (NdisAllocateSpinLock): Add missing '\'.
7977
7978 2003-05-30  Mattia Barbon  <mbarbon@dsi.unive.it>
7979
7980         * lib/oleacc.def: New file.
7981         * include/winable.h: New file.
7982         * include/oleacc.h: Add extern "C" guard.
7983         (NAVDIR_*, ROLE_*, STATE_*): Add missing constants.
7984         (AccessibleChildren, AccessibleObjectFromEvent,
7985         AccessibleObjectFromPoint, AccessibleObjectFromWindow,
7986         CreateStdAccessibleProxy[AW], GetOleaccVersionInfo, GetRoleText[AW],
7987         GetStateText[AW], LresultFromObject, ObjectFromLresult,
7988         WindowFromAccessibleObject): Add prototypes and UNICODE mappings.
7989         * include/winuser.h (NotifyWinEvent): Add prototype.
7990         (OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR,
7991         OBJID_MENU, OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL,
7992         OBJID_SIZEGRIP, OBJID_CARET, OBJID_CURSOR, OBJID_ALERT,
7993         OBJID_SOUND): Move from here to...
7994         * include/winable.h (OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR,
7995         OBJID_MENU, OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL,
7996         OBJID_SIZEGRIP, OBJID_CARET, OBJID_CURSOR, OBJID_ALERT,
7997         OBJID_SOUND): Here, as per documentation.
7998         * lib/test.c: Include winable.h.
7999         * lib/user32.def (NotifyWinEvent): Add missing export.
8000
8001 2003-05-30  Bang Jun-Young  <junyoung@netbsd.org>
8002
8003         * include/winbase.h (HeapCompact): Correct prototype.
8004         * include/winnt.h (SINGLE_LIST_ENTRY, SLIST_ENTRY,
8005         SLIST_HEADER): Add.
8006
8007 2003-05-27  Andrew C. Stadt  <acstadt@sympatico.ca>
8008
8009         * include/winuser.h (LWA_COLORKEY, LWA_ALPHA): Add defines.
8010
8011 2003-05-25  Bill C. Riemers  <cygwin@docbill.net>
8012
8013         * include/winuser.h (EnumDisplayDevicesW): Fix typo.
8014
8015 2003-05-23  Danny Smith  <dannysmith@users.sourceforge.net>
8016
8017         * include/winuser.h (EnumDisplayDevices[AW]): Add prototypes.
8018         * include/wingdi.h (DISPLAY_DEVICE): UNICODE it.
8019
8020 2003-05-23  Andrew Dunbar  <hippietrail@users.sourceforge.net>
8021
8022         * include/wingdi.h (GCP_RESULTS[AW]) Correct type of
8023         lpGlyphs field to LPWSTR.
8024
8025 2003-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
8026
8027         * include/wincrypt.h (PLAINTEXTKEYBLOB, OPAQUEKEYBLOB,
8028         PUBLICKEYBLOBEX, SYMMETRICWRAPKEYBLOB) Add defines.
8029         (PP_*): Add defines.
8030         (CryptContextAddRef): Add prototype.
8031         Thanks to: Shura Zam  <debil_urod@users.sourceforge.net>
8032
8033 2003-05-18  Manu B  <manubee@users.sourceforge.net>
8034
8035         * include/commctrl.h (TVSORTCB): Rename old TV_SORTCB structure.
8036
8037 2003-05-18  Bang Jun-Young  <junyoung@netbsd.org>
8038
8039         * include/winbase.h (CREATE_DEFAULT_ERROR_MODE,
8040         DEBUG_PROCESS, DEBUG_ONLY_THIS_PROCESS, CREATE_SUSPENDED,
8041         DETACHED_PROCESS, CREATE_NEW_CONSOLE, NORMAL_PRIORITY_CLASS,
8042         IDLE_PRIORITY_CLASS, HIGH_PRIORITY_CLASS, REALTIME_PRIORITY_CLASS,
8043         CREATE_NEW_PROCESS_GROUP, CREATE_UNICODE_ENVIRONMENT,
8044         CREATE_SEPARATE_WOW_VDM, CREATE_SHARED_WOW_VDM, CREATE_FORCEDOS,
8045         CREATE_NO_WINDOW): Convert to hexadecimal form for better
8046         readability.
8047         (BELOW_NORMAL_PRIORITY_CLASS, ABOVE_NORMAL_PRIORITY_CLASS,
8048         CREATE_BREAKAWAY_FROM_JOB, CREATE_WITH_USERPROFILE): Add.
8049
8050 2003-05-15  Danny Smith  <dannysmith@users.sourceforge.net>
8051
8052         * include/ddk/ndis.h (NDIS30_MINIPORT_CHARACTERISTICS_S):
8053         Unname anonymous unions if NONAMELESSUNION not defined.
8054
8055 2003-05-14  Bang Jun-Young  <junyoung@netbsd.org>
8056
8057         * include/winbase.h (GMEM_VALID_FLAGS): Add.
8058
8059 2003-05-13  Danny Smith  <dannysmith@users.sourceforge.net>
8060
8061         * include/prsht.h (PROPSHEETHEADER[AW]: Mark
8062         anonymous unions as GCC extension.
8063
8064 2003-05-13  Danny Smith  <dannysmith@users.sourceforge.net>
8065
8066         * include/oleidl.h  (LPENUMOLEDOCUMENTVIEWS): Remove typedef.
8067         (IEnumOleDocumentViews): Remove commented out DECLARE_ENUMERATOR.
8068         * include/docobj.h  (LPENUMOLEDOCUMENTVIEWS): Add typedef (previously
8069         commented out).
8070         (IEnumOleDocumentViews): Add definition using DECLARE_ENUMERATOR.
8071
8072 2003-05-12  Earnie Boyd  <earnie@users.sf.net>
8073
8074         * include/commctrl.h: (MCSC_BACKGROUND, MCSC_TEXT, MCSC_TITLEBK,
8075         MCSC_TITLETEXT, MCSC_MONTHBK, MCSCTRAILTEXT): Define.
8076         Thanks to: Robert Wishlaw  <rwishlaw @ shaw . ca>
8077
8078 2003-05-12  Danny Smith  <dannysmith@users.sourceforge.net>
8079
8080         * include/olectl.h (IOleControl,IOleControlSite,ISimpleFrameSite,
8081         IErrorLog,IPropertyBag,IPersistPropertyBag,IPersistStreamInit,
8082         IPersistMemory,IPropertyNotifySink,IProvideClassInfo,
8083         IProvideClassInfo2,IConnectionPointContainer,
8084         IEnumConnectionPoints,IConnectionPoint,IEnumConnections,
8085         IClassFactory2,ISpecifyPropertyPages,IPerPropertyBrowsing,
8086         IPropertyPageSite,IPropertyPage,IPropertyPage2,IFont,IFontDisp,
8087         IPicture,IPictureDisp): Move from here to...
8088         * include/ocidl.h (IOleControl,IOleControlSite,ISimpleFrameSite,
8089         IErrorLog,IPropertyBag,IPersistPropertyBag,IPersistStreamInit,
8090         IPersistMemory,IPropertyNotifySink,IProvideClassInfo,
8091         IProvideClassInfo2,IConnectionPointContainer,
8092         IEnumConnectionPoints,IConnectionPoint,IEnumConnections,
8093         IClassFactory2,ISpecifyPropertyPages,IPerPropertyBrowsing,
8094         IPropertyPageSite,IPropertyPage,IPropertyPage2,IFont,IFontDisp,
8095         IPicture,IPictureDisp): Here, as per documentation.
8096
8097 2003-05-12  Mattia Barbon  <mbarbon@dsi.unive.it>
8098
8099         * include/oleauto.h (VarR8FromDec, VarDecFromR8): Add prototypes.
8100         * include/winbase.h (TerminateJobObject,
8101         AssignProcessToJobObject): Likewise.
8102         * include/servprov.h: New header.
8103         * lib/test.c: Include servprov.h.
8104
8105 2003-05-10  Danny Smith  <dannysmith@users.sourceforge.net>
8106
8107         * include/shlguid.h (CGID_ShellServiceObject): Declare.
8108         * lib/uuid.c (CGID_ShellServiceObject): Define guid.
8109         Thanks to Chris Sutcliffe  <ir0nh34d#users.sourceforge.net>
8110         * include/winuser.h (SetLayeredWindowAttributes): Add prototype.
8111         * lib/user32.def (SetLayeredWindowAttributes): Add stub.
8112         * lib/uuid.c (CGID_Explorer, CGID_ShellDocView): Define guids.
8113
8114 2003-05-05  Danny Smith  <dannysmith@users.sourceforge.net>
8115
8116         * include/commctrl.h (STATUSCLASSNAME, TOOLBARCLASSNAME,
8117         TOOLTIPS_CLASS, TRACKBAR_CLASS, UPDOWN_CLASS, PROGRESS_CLASS,
8118         HOTKEY_CLASS): Remove dupicate defines for UNICODE case.
8119
8120 2003-05-02  Steven Edwards  <Steven_Ed4153@yahoo.com>
8121
8122         * include/richedit.h (EM_FINDTEXTEXW, EM_FINDTEXTW,
8123         EM_GETAUTOURLDETECT, EM_GETBIDIOPTIONS, EM_GETEDITSTYLE,
8124         EM_GETIMECOLOR, EM_GETIMEOPTIONS, EM_GETPUNCTUATION,
8125         EM_GETWORDWRAPMODE, EM_RECONVERSION, EM_SETBIDIOPTIONS,
8126         EM_SETEDITSTYLE, EM_SETIMECOLOR, EM_SETIMEOPTIONS,
8127         EM_SETPALETTE, EM_SETPUNCTUATION, EM_SETTEXTEX,
8128         EM_SETWORDWRAPMODE, RICHEDIT_CLASS10A): Add defines.
8129
8130 2003-05-02  Francois Ferrand  <typz@sourceforge.users.net>
8131
8132         * include/commctrl.h (TBM_*): Add missing trackbar defines.
8133
8134 2003-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
8135
8136         * include/cplext.h (CPLPAGE_MOUSE_WHEEL,
8137         CPLPAGE_DISPLAY_BACKGROUND): Add defines.
8138
8139 2003-04-30  Danny Smith  <dannysmith@users.sourceforge.net>
8140
8141         * include/wingdi.h (DC_PEN, DC_BRUSH): Add defines.
8142         (SetDCPenColor, SetDCBrushColor): Add prototypes.
8143         * lib/gdi32.def (SetDCPenColor, SetDCBrushColor): Add stubs.
8144
8145 2003-04-26  Bang Jun-Young  <junyoung@netbsd.org>
8146
8147         * include/winioctl.h (DEVICE_TYPE_FROM_CTL_CODE): Add macro.
8148
8149 2003-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
8150
8151         * include/oaidl.h (ITypeMarshal): Add interface.
8152
8153 2003-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
8154
8155         * include/winioctl.h: Clean up formatting.
8156         (RETRIEVAL_POINTERS_BUFFER): Add fields to Extents[1] struct.
8157         (CREATE_DISK): Add _ANONYMOUS_UNION macro.
8158         (DISK_CACHE_INFORMATION): Likewise.
8159         (DISK_DETECTION_INFO): Likewise.
8160         (DISK_PARTITION_INFO): Likewise.
8161         (PARTITION_INFORMATION_EX): Likewise.
8162         (DRIVE_LAYOUT_INFORMATION_EX): Likewise.
8163
8164 2003-04-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8165
8166         * include/winbase.h (DeleteVolumeMountPoint[AW],
8167         FindFirstVolumeMountPoint[AW], FindNextVolumeMountPoint[AW],
8168         FindVolumeMountPointClose, GetVolumeNameForVolumeMountPoint[AW],
8169         GetVolumePathName[AW], GetVolumePathNamesForVolumeName[AW],
8170         SetVolumeMountPoint[AW]): Add prototypes.
8171         * include/winioctl.h (IOCTL_DISK_GET_PARTITION_INFO_EX,
8172         IOCTL_DISK_SET_PARTITION_INFO_EX,
8173         IOCTL_DISK_GET_DRIVE_LAYOUT_EX,
8174         IOCTL_DISK_SET_DRIVE_LAYOUT_EX, IOCTL_DISK_CREATE_DISK,
8175         IOCTL_DISK_GET_LENGTH_INFO, IOCTL_DISK_PERFORMANCE_OFF,
8176         IOCTL_DISK_GET_DRIVE_GEOMETRY_EX, IOCTL_DISK_GROW_PARTITION,
8177         IOCTL_DISK_GET_CACHE_INFORMATION,
8178         IOCTL_DISK_SET_CACHE_INFORMATION,
8179         IOCTL_DISK_DELETE_DRIVE_LAYOUT, IOCTL_DISK_UPDATE_PROPERTIES,
8180         FSCTL_GET_VOLUME_BITMAP, FSCTL_GET_RETRIEVAL_POINTERS,
8181         FSCTL_MOVE_FILE): Define.
8182         (CREATE_DISK_GPT, CREATE_DISK_MBR, CREATE_DISK,
8183         DISK_CACHE_INFORMATION,
8184         DETECTION_TYPE, DISK_INT13_INFO, DISK_EX_INT13_INFO,
8185         DISK_DETECTION_INFO, DISK_GEOMETRY_EX, DISK_GROW_PARTITION,
8186         DISK_PARTITION_INFO, DISKQUOTA_USER_INFORMATION,
8187         GET_LENGTH_INFORMATION, DISK_EXTENT, VOLUME_DISK_EXTENTS,
8188         DRIVE_LAYOUT_INFORMATION_GPT, DRIVE_LAYOUT_INFORMATION_MBR,
8189         PARTITION_INFORMATION_MBR, PARTITION_INFORMATION_GPT,
8190         PARTITION_INFORMATION_EX, DRIVE_LAYOUT_INFORMATION_EX,
8191         MOVE_FILE_DATA,
8192         RETRIEVAL_POINTERS_BUFFER, STARTING_LCN_INPUT_BUFFER,
8193         STARTING_VCN_INPUT_BUFFER, VOLUME_BITMAP_BUFFER): Add structs.
8194         (PARTITION_STYLE, DISK_CACHE_RETENTION_PRIORITY): Add enums.
8195         (MEDIA_TYPE): Add F3_120M_512, F3_640_512, F5_640_512,
8196         F5_720_512, F3_1Pt2_512, F3_1Pt23_1024, F5_1Pt23_1024,
8197         F3_128Mb_512, F3_230Mb_512, F8_256_128, F3_200Mb_512,
8198         F3_240M_512, and F3_32M_512.
8199         * lib/kernel32.def (GetVolumePathNamesForVolumeName[AW]): Add
8200         stubs.
8201
8202 2003-04-16  Earnie Boyd  <earnie@users.sf.net>
8203
8204         * include/wingdi.h (DM_SPECVERSION): Define.
8205         Thanks to Sinitsyn Valentime <valentine.sinitsyn@usu.ru>
8206         * include/rpcdce.h (UuidCreateSequential): Properly guard with
8207         appropriate _WIN32_WINNT values.
8208
8209 2003-04-15  Chris January  <chris@atomice.net>
8210
8211         * include/rpcdce.h: Add declaration for UuidCreateSequential.
8212         * lib/rpcrt4.def: Add entry for UuidCreateSequential.
8213
8214 2003-04-14  Phil Krylov  <likewolf@users.sourceforge.net>
8215
8216         * include/winuser.h (VK_*): Add missing defines.
8217
8218 2003-04-14  Vincent Béron  <papineau@users.sourceforge.net>
8219
8220         * include/commctrl.h (NMUPDOWN, LPNMUPDOWN): Use currently
8221         documented typedefs for struct _NM_UPDOWN.
8222         Add defines for backward comapatibility.
8223         * include/commdlg.h (OFN_ENABLESIZING): Add define.
8224         * include/wininet.h (IRF_*): Add missing defines.
8225
8226 2003-04-14  Bang Jun-Young  <junyoung@netbsd.org>
8227
8228         * lib/ntdll.def (Csr*, Dbg*, Ki*, Ldr*, Rtl*): Add W2K exports.
8229
8230 2003-04-11  Earnie Boyd  <earnie@users.sf.net>
8231
8232         * include/sspi.h: Add comment for FreeCredentialsHandle.
8233
8234 2003-04-07  Marcel Telka  <telka@users.sourceforge.net>
8235
8236         * include/ddk/winddk.h (KIRQL): Typedef as UCHAR, not ULONG.
8237
8238 2003-03-30  Hans E. Molin  <kvasi@users.sourceforge.net>
8239
8240         * include/olectl.h (OleLoadPicturePath): Correct prototype.
8241
8242 2003-03-30  Danny Smith  <dannysmith@users.sourceforge.net>
8243
8244         * lib/uuid.c (IID_IHTML*): Move definitions to...
8245         * lib/mshtml-uuid.c: New file.
8246         * lib/Makefile.in: Add mshtml-uuid.o to libuuid.a
8247
8248 2003-03-30  Michael Sazonov  <traip@comset.net>
8249
8250         * lib/uuid.c (IID_IHTML*): Add new GUID definitions.
8251         * include/mshtml.h (IHTMLElementCollection, IHTMLLinkElement,
8252         IHTMLImgElement): Add interface definitions.
8253
8254 2003-03-29  Danny Smith  <dannysmith@users.sourceforge.net>
8255
8256         * include/commctrl.h (ANIMATE_CLASS,HOTKEY_CLASS,PROGRESS_CLASS,
8257         STATUSCLASSNAME,TOOLBARCLASSNAME,TOOLTIPS_CLASS,TRACKBAR_CLASS,
8258         UPDOWN_CLASS,WC_COMBOBOXEX,WC_HEADER,WC_IPADDRESS,WC_LISTVIEW,
8259         WC_TABCONTROL,WC_TREEVIEW): Move UNICODE mappings out of
8260         RC_INVOKED guard.
8261         (WC_PAGESCROLLER,WC_NATIVEFONTCTL,WC_BUTTON,WC_STATIC,WC_EDIT,
8262         WC_LISTBOX,WC_COMBOBOX,WC_SCROLLBAR): Add defines.
8263
8264 2003-03-28  Bang Jun-Young  <junyoung@netbsd.org>
8265
8266         * include/winnt.h (WAITORTIMERCALLBACKFUNC): Add typedef.
8267
8268 2003-03-27  Danny Smith  <dannysmith@users.sourceforge.net>
8269
8270         * include/secext.h (GetComputerObjectName[AW],GetUserNameEx[AW],
8271         TranslateName[AW]): Add prototypes.
8272         * lib/sec32.def (GetComputerObjectName[AW],GetUserNameEx[AW],
8273         TranslateName[AW]): Add stubs.
8274         * lib/test.c: Include secext.h.
8275
8276 2003-03-27  Vladimir Michl  <michlv@users.sourceforge.net>
8277
8278         * include/ddk/ndis.h (NdisAllocateSpinLock,NdisFreeSpinLock,
8279         NdisAcquireSpinLock,NdisReleaseSpinLock,NdisDprAcquireSpinLock,
8280         NdisDprReleaseSpinLock): Change macro argument from SpinLock to
8281         _SpinLock.
8282
8283 2003-03-26  Earnie Boyd  <earnie@users.sf.net>
8284
8285         * include/w32api.h: Increment version to 2.4.
8286         * Makefile.in: Ditto.
8287
8288 2003-03-26  Danny Smith  <dannysmith@users.sourceforge.net>
8289
8290         * include/ddk/batclass.h (BATTERY_REPORTING_SCALE)
8291         Move structure from here...
8292         * include/winnt.h (BATTERY_REPORTING_SCALE): To here.
8293
8294         * include/ddk/ntapi.h (JOBOBJECT_*):
8295         Remove structures and enums definitions.
8296         (JOB_OBJECT*): Move defines from here...
8297         * include/winnt.h (JOB_OBJECT* ): To here.
8298
8299         * include/ddk/ntpoapi.h (LATENCY_TIME, POWER_ACTION_POLICY,
8300         SYSTEM_POWER_LEVEL, SYSTEM_POWER_POLICY,
8301         PROCESSOR_POWER_POLICY_INFO, PROCESSOR_POWER_POLICY,
8302         ADMINISTRATOR_POWER_POLICY, SYSTEM_POWER_INFORMATION,
8303         PROCESSOR_POWER_INFORMATION, SYSTEM_BATTERY_STATE,
8304         SYSTEM_POWER_CAPABILITIES): Move enums, structures
8305         and associated defines from here ...
8306         * include/winnt.h: (LATENCY_TIME, POWER_ACTION_POLICY,
8307         SYSTEM_POWER_LEVEL, SYSTEM_POWER_POLICY,
8308         PROCESSOR_POWER_POLICY_INFO, PROCESSOR_POWER_POLICY,
8309         ADMINISTRATOR_POWER_POLICY, SYSTEM_POWER_INFORMATION,
8310         PROCESSOR_POWER_INFORMATION, SYSTEM_BATTERY_STATE,
8311         SYSTEM_POWER_CAPABILITIES):To here.
8312
8313         * include/ddk/winddk.h (DEVICE_POWER_STATE,
8314         SYSTEM_POWER_STATE, POWER_ACTION): Move enums
8315         from here...
8316         * include/winnt.h (DEVICE_POWER_STATE,
8317         SYSTEM_POWER_STATE, POWER_ACTION): To here.
8318
8319 2003-03-19  Danny Smith  <dannysmith@users.sourceforge.net>
8320
8321         *lib/ndis.def (NdisAllocateMemory): Correct stdcall suffix.
8322         Thanks to: Vladimir Michl <michlv@users.sourceforge.net>
8323         (NdisUpdateSharedMemory): Likewise.
8324         (NdisMFreeSharedMemory: Likewise.
8325         (NdisMMapIoSpace: Likewise.
8326
8327 2003-03-18  Danny Smith  <dannysmith@users.sourceforge.net>
8328
8329         * include/lmaccess.h (UF_LOCKOUT): Correct name from UF_LOCK.
8330         Thanks to: Fabricio D. Rossi  <gurusoda@users.sourceforge.net>
8331         (UF_SETTABLE_BITS): Correct UF_LOCKOUT here too.
8332
8333 2003-03-17  Bang Jun-Young  <junyoung@netbsd.org>
8334
8335         * include/winbase.h (EnumResourceLanguages[AW]): Correct prototypes.
8336         (EnumResourceNames[AW]): Ditto.
8337         (EnumResourceTypes[AW]): Ditto.
8338         * include/wincon.h (CONSOLE_FONT_INFO): Add struct.
8339
8340 2003-03-16  Toby Malone  <malone@users.sourceforge.net>
8341
8342         * include/winuser.h (SendInput): Add prototype.
8343         * lib/user32.def (SendInput): Add stub.
8344
8345 2003-03-16  Vadim Yegorov  <zg@bmg.lv>
8346
8347         * winioctl.h (FSCTL_SET_REPARSE_POINT: Correct macro.
8348         (FSCTL_DELETE_REPARSE_POINT): Likewise.
8349
8350 2003-03-15  Bang Jun-Young  <junyoung@netbsd.org>
8351
8352         * winnt.h (JOBOBJECTINFOCLASS): Define enum.
8353         (JOBOBJECT_*): Define corresponding structures.
8354
8355 2003-03-13  Danny Smith  <dannysmith@users.sourceforge.net>
8356
8357         * include/ddk/winddk.h (PCUNICODE_STRING): Remove incorrect
8358         typedef.
8359
8360 2003-03-13  Bang Jun-Young  <junyoung@netbsd.org>
8361
8362         * lib/kernel32.def (Module32{First,Next}{,W}): Add missing exports.
8363         (Process32{First,Next}{,W}): Ditto.
8364         (Thread32{First,Next}): Ditto.
8365         * include/ntdef.h (PCUNICODE_STRING): Add typedef.
8366
8367 2003-03-12  Earnie Boyd  <earnie@users.sf.net>
8368
8369         * include/mswsock.h: Correct invalid filter for _WINSOCK2_H.
8370         Thanks to Jim Barton <jmbarton@users.sf.net>.
8371
8372 2003-03-12  Ranjit Mathew  <rmathew@hotmail.com>
8373
8374         * include/winnt.h (_IMAGE_SEPARATE_DEBUG_HEADER): Expose
8375         member SectionAlignment.
8376
8377 2003-03-11  Earnie Boyd  <earnie@users.sf.net>
8378
8379         * include/winsvc.h (SERVICE_NO_CHANGE): Use hex constant to avoid
8380         warnings.
8381         Thanks to Fabricio D. Rossi <gurusoda@users.sf.net>.
8382         * Makefile.in (bindist): Correct process.
8383         * lib/Makefile.in (install): Ditto.
8384         Thanks to Jeff Bonnggren <jbon@users.sf.net>.
8385
8386 2003-03-10  Danny Smith  <dannysmith@users.sourceforge.net>
8387
8388         * include/rasdlg.h: New file.
8389         * lib/rasdlg.def: New file.
8390         * lib/test.c: Include rasdlg.h.
8391
8392 2003-03-06  Christopher January  <chris@atomice.net>
8393
8394         * include/winbase.h (FindFirstVolume): Add declaration.
8395         (FindNextVolume): Add declaration.
8396         (FindVolumeClose): Add declaration.
8397         (GetSystemTimes): Add declaration.
8398         * include/winnt.h: Add define for PF_XMMI64_INSTRUCTIONS_AVAILABLE.
8399
8400 2003-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
8401
8402         *lib/kernel32.def (GetSystemTimes): Add stub.
8403
8404 2003-03-04  Heiko Gerdau  <hg@technosis.de>
8405
8406         * oleidl.h (IOleObject): Correct GetUserType prototype.
8407         (IViewObject2): Correct GetExtent prototype.
8408         * olectl.h (DISPIP_): Add new defines
8409         * ocidl.h (IOleInPlaceSiteWindowless): Add new interface.
8410
8411 2003-03-01  Danny Smith  <dannysmith@users.sourceforge.net>
8412
8413         * include/olectl.h (OleLoadPictureEx) Add prototype.
8414         (OleLoadPictureFile): Ditto.
8415         (OleLoadPictureFileEx): Ditto.
8416         (OleLoadPicturePath): Ditto.
8417         (OleSavePictureFile): Ditto.
8418
8419 2003-03-01  Danny Smith  <dannysmith@users.sourceforge.net>
8420
8421         * include/objbase.h (CoAddRefServerProcess): Add prototype.
8422         (CoAddReleaseServerProcess): Ditto.
8423         (CoResumeClassObjects): Ditto.
8424         (CoSuspendClassObjects): Ditto.
8425         * include/oleauto.h (V_I1): Define.
8426         Thanks to: "Timofei"  <mmttmm@users.sourceforge.net>
8427
8428 2003-03-01  Heiko Gerdau  <hg@technosis.de>
8429
8430         * include/oleidl.h (USERCLASSTYPE): Add enum.
8431         * include/ocidl.h (IObjectWithSite): Add interface.
8432
8433 2003-02-28  Roland Schwingel  <roland.schwingel@onevision.de>
8434
8435         Fixup UNICODE thinko in 2003-02-22 patch.
8436         * include/wingdi.h (AddFontMemResourceEx): Add.
8437         (RemoveFontMemResourceEx): Ditto.
8438         (AddFontMemResourceEx[AW]): Remove.
8439         (RemoveFontMemResourceEx[AW]): Ditto
8440         * lib/gdi32.def: (AddFontResourceEx): Add.
8441         (RemoveFontMemResourceEx): Ditto.
8442         (AddFontMemResourceEx[AW]): Remove.
8443         (RemoveFontResourceEx[AW]): Ditto.
8444
8445 2003-02-23  Danny Smith  <dannysmith@users.sourceforge.net>
8446
8447         * include/winbase.h (EVENTLOG_SUCCESS): Add define.
8448         Thanks to: Thomas Weber  <thomasweber@sourceforge.net>
8449
8450 2003-02-22  Roland Schwingel  <roland.schwingel@onevision.de>
8451
8452         * include/wingdi.h (AddFontMemResourceEx[AW]): Add.
8453         (RemoveFontMemResourceEx[AW]): Ditto
8454         * lib/gdi32.def (AddFontMemResourceEx[AW]): Add.
8455         (RemoveFontMemResourceEx[AW]): Ditto.
8456
8457 2003-02-22  Bang Jun-Young  <junyoung@netbsd.org>
8458
8459         * lib/ntdll.def (NT*, RTL*, ZW*): Add missing exports.
8460         (NtCurrentTeb): Remove.
8461
8462 2003-02-22  Danny Smith  <dannysmith@users.sourceforge.net>
8463
8464         * include/wsahelp.h: Remove ';' after closing
8465         #ifdef __cplusplus brace.
8466         * include/ws2spi.h: Likewise.
8467
8468 2003-02-22  Danny Smith  <dannysmith@users.sourceforge.net>
8469
8470         * include/winbase.h (MEMORYSTATUSEX): Add structure.
8471         (GlobalMemoryStatusEx): Add prototype.
8472         * lib/kernel32.def (GlobalMemoryStatusEx): Add stub.
8473
8474 2003-02-17  Vaclav Haisman  <V.Haisman@sh.cvut.cz>
8475
8476         * include/winioctl.h (FSCTL_SET_SPARSE): Define.
8477
8478 2003-02-12  Roland Schwingel  <roland.schwingel@onevision.de>
8479
8480         * include/wingdi.h (AddFontResourceEx[AW]): Add.
8481         (RemoveFontResourceEx[AW]): Ditto
8482         (FR_PRIVATE): Define.
8483         (FR_NOT_ENUM): Define.
8484         * lib/gdi32.def (AddFontResourceEx[AW]): Add.
8485         (RemoveFontResourceEx[AW]): Ditto.
8486
8487 2003-02-10  Earnie Boyd  <earnie@users.sf.net>
8488
8489         * include/w32api.h: Increment version to 2.3.
8490         * Makefile.in: Ditto.
8491
8492 2003-02-09  Earnie Boyd  <earnie@users.sf.net>
8493
8494         * lib/ddk/ntoskrnl.def (Ke386IoSetAccessProcess): Activate export.
8495         (Ke386QueryToAccessMap): Ditto.
8496         (Ke386SetIoAccessMap): Ditto.
8497         Thanks to Marcel Telka <telka@users.sf.net>
8498         * include/secext.h: New file. Declare EXTENDED_NAME_FORMAT.
8499         * include/security.h: Include secext.h.
8500         * include/winbase.h: Declare COMPUTER_NAME_FORMAT.
8501         Thanks to Dimitri Papadopoulos <dimitri_at@users.sf.net>
8502         * include/GL/gl.h: Remove include of glext.h.
8503         Thanks to Greg Couch <gregcouch@users.sf.net>
8504
8505 2003-02-05  Earnie Boyd  <earnie@users.sf.net>
8506
8507         * include/basetypes.h (_GUID_DEFINED): Add deprecation warning, start
8508         using GUID_DEFINED instead.
8509         * include/sqltypes.h: Ditto.
8510         * include/winnt.h: Ditto.
8511         * include/ddk/scsiwmi.h: Ditto.
8512
8513 2003-02-04  Danny Smith  <dannysmith@users.sourceforge.net>
8514
8515         * include/shlwapi.h (PathRelativePathTo[AW]): Correct
8516         prototypes.
8517         Thanks to: John Dallaway  <jld@ecoscentric.com>.
8518
8519 2003-02-01  Danny Smith  <dannysmith@users.sourceforge.net>
8520
8521         * include/commctrl.h (TCM_*): Add missing defines.
8522
8523 2003-02-01  Jesus Alvarez  <jesus_alvarez@users.sourceforge.net>
8524             Danny Smith  <dannysmith@users.sourceforge.net>
8525
8526         * include/prsht.h (PSP_*, PSH_*): Add missing defines.
8527         (PROPSHEETPAGE[AW]): Add pszHeaderTitle, pszHeaderSubTitle
8528         for (_WIN32_IE >= 0x0400).
8529         (PROPSHEETHEADER[AW]): Add hplWatermark and anonymous union
8530         fields for (_WIN32_IE >= 0x0400).
8531
8532 2003-01-31  Danny Smith  <dannysmith@users.sourceforge.net>
8533
8534         * include/winbase.h (CreateFiber): Change first parameter
8535         to SIZE_T.
8536         (CreateJobObject[AW], CreateHardLink[AW]):Guard with
8537         if (_WIN32_WINNT >= 0x0500).
8538
8539 2003-01-31  Bang Jun-Young  <junyoung@netbsd.org>
8540
8541         * include/winbase.h (PWIN32_FIND_DATAA, PWIN32_FIND_DATAW):
8542         Add missing typedefs.
8543         (CreateFiberEx, CreateJobObjectA,CreateJobObjectW): Add missing
8544         prototypes.
8545         (CreateHardLinkA, CreateHardLinkW): Return BOOL, not HANDLE.
8546
8547 2003-01-27  Krzysztof Nikiel  <kni@poczta.onet.pl>
8548
8549         * include/mmsystem.h (MIXERCONTROL_CONTROLF_MULTIPLE): Correct
8550         define.
8551         * lib/largeint.c (LargeIntegerAdd): Add, don't multiply.
8552
8553 2003-01-27  Danny Smith  <dannysmith@users.sourceforge.net>
8554
8555         * include/rpcnterr.h (RPC_X_INVALID_PIPE_OPERATION): Add
8556         define.
8557         * include/winbase.h (WAIT_TIMEOUT): Guard against prior
8558         definition.
8559         (WAIT_FAILED): Cast to DWORD.
8560         * include/winerror.h (WAIT_TIMEOUT): Guard against prior
8561         definition.
8562
8563 2003-01-27  Bang Jun-Young  <junyoung@netbsd.org>
8564
8565         * include/winerror.h: Protect against multiple
8566         definition of WSA* error codes.
8567         * include/winsock.h: Likewise.
8568         * include/winsock2.h: Likewise.
8569
8570 2003-01-27  Bang Dong-Heui
8571             Bang Jun-Young  <junyoung@netbsd.org>
8572
8573         * include/winerror.h (ERROR_*, SEC_E_*,RPC_S_*, FRS_ERR_*,
8574         DNS_*, WSA*, WAIT_TIMEOUT): Add missing error codes.
8575         (RPC_X_INVALID_PIPE_OPERATION): Remove define.
8576
8577
8578 2003-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
8579
8580         * include/ras.h (RASCONN[AW]): Add dwSessionId for
8581         (WINVER >= 0x501).
8582
8583 2003-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
8584
8585         * include/ras.h (RASCONN[AW]): Guard szDeviceType,
8586         szDeviceName fields with (WINVER >= 0x400). Add dwFlags, luid
8587         fields for (WINVER >= 0x501).
8588
8589 2003-01-23  Danny Smith  <dannysmith@users.sourceforge.net>
8590
8591         * lib/ws2_32.def (getaddrinfo, freeaddrinfo and getnameinfo):
8592         Add stubs.
8593         * include/ws2tcpip.h (IPV6_*) Add IPPROTO_IPV6 level socket
8594         options.
8595
8596 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
8597
8598         * include/winnt.h (IMAGE_FILE_AGGRESIVE_WS_TRIM
8599         IMAGE_FILE_LARGE_ADDRESS_AWARE): Add defines.
8600
8601 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
8602
8603         * include/accctrl.h (enum _SE_OBJECT_TYPE): Add
8604         SE_REGISTRY_WOW64_32KEY.
8605         Reported by: Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8606
8607 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
8608
8609         * include/commctrl.h (HDN_GETDISPINFO[AW]: Add defines.
8610         (tagNMHDDISPINFO[AW}: Add structures and typedefs.
8611         Reported by: Mat Nieuwenhoven  <matnieuw@users.sourceforge.net>
8612
8613 2003-01-10  Christopher Faylor  <cgf@redhat.com>
8614
8615         * include/winsock2.h: Remove gethostname from INSIDE_CYGWIN protection.
8616
8617 2003-01-08  Danny Smith  <dannysmith@users.sourceforge.net>
8618
8619         * lib/dxguid.c: Don't #include <objbase.h>.
8620         * include/unknwn.h: Partially revert change of 2002-12-26.
8621         Don't include <ole2.h>.
8622
8623 2003-01-08  Danny Smith  <dannysmith@users.sourceforge.net>
8624
8625         * lib/dinput.c: Don't #include <objbase.h>.
8626
8627 2003-01-08  Bart Oldeman  <bartoldeman@users.sourceforge.net>
8628
8629         * include/windows.h (ole2.h):Do #include for
8630         __WATCOMC__.
8631
8632 2003-01-05  Danny Smith  <dannysmith@users.sourceforge.net>
8633
8634         * include/winuser.h (SPI_SETWHEELSCROLLLINES) Add define.
8635         * include/zmouse.h (WHEEL_DELTA): Guard against prior
8636         definition.
8637         (WHEEL_PAGESCROLL): Likewise.
8638         (SPI_SETWHEELSCROLLLINES): Define, if not already done.
8639
8640 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
8641
8642         * include/winuser.h (SPI_GETWHEELSCROLLLINES) Add define.
8643         (WHEEL_PAGESCROLL): Add define.
8644
8645 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
8646
8647         * include/commctrl.h (tagNMTOOLBAR[AW]): Replace obsolete struct
8648         names tagTBNOTIFY[AW] and typedefs. Add defines for backward
8649         compatability. Add RECT field. Add UNICODE mappings for new
8650         names.
8651         (tagNMREBARCHEVRON): Add struct and typedefs for
8652         _WIN32_IE >= 0x0500.
8653
8654 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
8655
8656         * include/commctrl.h (TOOLINFO[AW]): Update structures.
8657         (LVHITTESTINFO): Likewise.
8658
8659         * include/wingdi.h (GRADIENT_TRIANGLE): Add structure.
8660         (GRADIENT_RECT): Likewise.
8661
8662 2003-01-03  Bang Jun-Young  <junyoung@netbsd.org>
8663
8664         * include/winerror.h (ERROR_OPLOCK_NOT_GRANTED,
8665         ERROR_INVALID_OPLOCK_PROTOCOL, ERROR_SOURCE_ELEMENT_EMPTY,
8666         ERROR_DESTINATION_ELEMENT_FULL, ERROR_ILLEGAL_ELEMENT_ADDRESS,
8667         ERROR_MAGAZINE_NOT_PRESENT, ERROR_DEVICE_REINITIALIZATION_NEEDED,
8668         ERROR_DEVICE_REQUIRES_CLEANING, ERROR_DEVICE_DOOR_OPEN,
8669         ERROR_DEVICE_NOT_CONNECTED, ERROR_NOT_FOUND, ERROR_NO_MATCH,
8670         ERROR_SET_NOT_FOUND, ERROR_NO_TRACKING_SERVICE,
8671         ERROR_JOURNAL_DELETE_IN_PROGRESS, ERROR_JOURNAL_NOT_ACTIVE,
8672         ERROR_JOURNAL_ENTRY_DELETED, ERROR_ONLY_IF_CONNECTED,
8673         ERROR_NOT_SUPPORTED_ON_SBS, ERROR_SERVER_SHUTDOWN_IN_PROGRESS,
8674         ERROR_MUTUAL_AUTH_FAILED, ERROR_TIME_SKEW, ERROR_DEVICE_REMOVED,
8675         RPC_S_INVALID_ASYNC_HANDLE, RPC_S_INVALID_ASYNC_CALL,
8676         RPC_X_PIPE_CLOSED, RPC_X_PIPE_DISCIPLINE_ERROR, RPC_X_PIPE_EMPTY,
8677         ERROR_CANT_ACCESS_FILE, ERROR_CANT_RESOLVE_FILENAME,
8678         ERROR_WMI_GUID_NOT_FOUND, ERROR_WMI_INSTANCE_NOT_FOUND,
8679         ERROR_WMI_ITEMID_NOT_FOUND, ERROR_WMI_TRY_AGAIN, ERROR_WMI_READ_ONLY,
8680         ERROR_WMI_SET_FAILURE, ERROR_TRANSPORT_FULL, ERROR_FILE_OFFLINE,
8681         ERROR_REMOTE_STORAGE_NOT_ACTIVE, ERROR_REMOTE_STORAGE_MEDIA_ERROR,
8682         ERROR_NOT_A_REPARSE_POINT, ERROR_REPARSE_ATTRIBUTE_CONFLICT,
8683         ERROR_INVALID_REPARSE_DATA, ERROR_REPARSE_TAG_INVALID,
8684         ERROR_REPARSE_TAG_MISMATCH, ERROR_FILE_ENCRYPTED,
8685         ERROR_FILE_NOT_ENCRYPTED, ERROR_NOT_EXPORT_FORMAT,
8686         ERROR_CTX_WINSTATION_NAME_INVALID, ERROR_CTX_INVALID_PD,
8687         ERROR_CTX_PD_NOT_FOUND, ERROR_CTX_WD_NOT_FOUND,
8688         ERROR_CTX_CLOSE_PENDING, ERROR_CTX_NO_OUTBUF,
8689         ERROR_CTX_MODEM_INF_NOT_FOUND, ERROR_CTX_INVALID_MODEMNAME,
8690         ERROR_CTX_MODEM_RESPONSE_ERROR, ERROR_CTX_MODEM_RESPONSE_TIMEOUT,
8691         ERROR_CTX_MODEM_RESPONSE_NO_CARRIER,
8692         ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE, ERROR_CTX_MODEM_RESPONSE_BUSY,
8693         ERROR_CTX_MODEM_RESPONSE_VOICE, ERROR_CTX_TD_ERROR,
8694         ERROR_CTX_WINSTATION_NOT_FOUND, ERROR_CTX_WINSTATION_ALREADY_EXISTS,
8695         ERROR_CTX_WINSTATION_BUSY, ERROR_CTX_BAD_VIDEO_MODE,
8696         ERROR_CTX_GRAPHICS_INVALID, ERROR_CTX_NOT_CONSOLE,
8697         ERROR_CTX_CLIENT_QUERY_TIMEOUT, ERROR_CTX_CONSOLE_DISCONNECT,
8698         ERROR_CTX_CONSOLE_CONNECT, ERROR_CTX_SHADOW_DENIED,
8699         ERROR_CTX_WINSTATION_ACCESS_DENIED, ERROR_CTX_INVALID_WD,
8700         ERROR_CTX_SHADOW_INVALID, ERROR_CTX_SHADOW_DISABLED,
8701         ERROR_CTX_CLIENT_LICENSE_IN_USE, ERROR_CTX_CLIENT_LICENSE_NOT_SET,
8702         ERROR_CTX_LICENSE_NOT_AVAILABLE, ERROR_CTX_LICENSE_CLIENT_INVALID,
8703         ERROR_CTX_LICENSE_EXPIRED, ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY,
8704         ERROR_DS_NO_ATTRIBUTE_OR_VALUE, ERROR_DS_INVALID_ATTRIBUTE_SYNTAX,
8705         ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED, ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS,
8706         ERROR_DS_BUSY, ERROR_DS_UNAVAILABLE, ERROR_DS_NO_RIDS_ALLOCATED,
8707         ERROR_DS_NO_MORE_RIDS, ERROR_DS_INCORRECT_ROLE_OWNER,
8708         ERROR_DS_RIDMGR_INIT_ERROR, ERROR_DS_OBJ_CLASS_VIOLATION,
8709         ERROR_DS_CANT_ON_NON_LEAF, ERROR_DS_CANT_ON_RDN,
8710         ERROR_DS_CANT_MOD_OBJ_CLASS, ERROR_DS_CROSS_DOM_MOVE_ERROR,
8711         ERROR_DS_GC_NOT_AVAILABLE, ERROR_SHARED_POLICY,
8712         ERROR_POLICY_OBJECT_NOT_FOUND, ERROR_POLICY_ONLY_IN_DS,
8713         ERROR_DS_ADMIN_LIMIT_EXCEEDED, ERROR_DS_DS_REQUIRED,
8714         ERROR_DS_SAM_INIT_FAILURE, ERROR_DS_SENSITIVE_GROUP_VIOLATION,
8715         ERROR_DS_CANT_MOD_PRIMARYGROUPID, ERROR_DS_INVALID_GROUP_TYPE,
8716         ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN,
8717         ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN,
8718         ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER,
8719         ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER,
8720         ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER,
8721         ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER,
8722         ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER,
8723         ERROR_DS_HAVE_PRIMARY_MEMBERS, ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD,
8724         ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY, ERROR_DS_CANT_START,
8725         ERROR_DS_INIT_FAILURE, ERROR_SAM_INIT_FAILURE, ERROR_DS_GC_REQUIRED,
8726         ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY,
8727         ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS,
8728         ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED):
8729         Add missing error codes.
8730
8731 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8732
8733         * lib/kernel32.c (GetCurrentFiber): Remove blank input field in
8734         asm code.
8735         (GetFiberData): Likewise.
8736
8737 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8738
8739         * include/winnt.h (GetCurrentFiber): Remove blank input field in
8740         asm code.
8741         (GetFiberData): Likewise.
8742
8743 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8744
8745         * include/winerror.h (ERROR_DIFFERENT_SERVICE_ACCOUNT,
8746         ERROR_EXE_MACHINE_TYPE_MISMATCH, ERROR_HOOK_TYPE_NOT_ALLOWED,
8747         ERROR_INVALID_KEYBOARD_HANDLE, ERROR_INVALID_PRINT_MONITOR,
8748         ERROR_PRINT_MONITOR_IN_USE, ERROR_PRINTER_HAS_JOBS_QUEUED,
8749         ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION,
8750         ERROR_SUCCESS_REBOOT_REQUIRED, ERROR_SUCCESS_RESTART_REQUIRED,
8751         ERROR_TIMEOUT, OR_INVALID_OID, OR_INVALID_OXID,
8752         OR_INVALID_SET, RPC_X_INVALID_PIPE_OPERATION): Add missing
8753         error codes.
8754         Re-sort codes.
8755
8756 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8757
8758         * include/winspool.h (PRINTER_INFO_6): Add.
8759         Reported by: Mat Nieuwenhoven  <matnieuw@users.sourceforge.net>
8760
8761 2002-12-30  Hartmut Honisch  <hhonisch@users.sourceforge.net>
8762
8763         * include/winbase.h (NMPWAIT_WAIT_FOREVER): Cast to DWORD.
8764
8765         * lib/ntdll.def (NtConnectPort, NtOpenEvent,
8766         NtRequestWaitReplyPort, NtWaitForSingleObject,ZwConnectPort,
8767         ZwOpenEvent, ZwRequestWaitReplyPort, ZwWaitForSingleObject):
8768         Add stubs.
8769
8770 2002-12-30  Danny Smith  <dannysmith@users.sourceforge.net>
8771
8772         * include/wingdi.h (wglGetLayerPaletteEntries): Correct
8773         prototype. Thanks to: Joe Krahn  <jkrahn at nc dot rr dot com>.
8774
8775 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8776
8777         * include/wingdi.h (DOCINFOA): Replace LPCTSTR with LPCSTR.
8778
8779 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8780
8781         * include/wingdi.h (BALTIC_CHARSET, JOHAB_CHARSET,
8782         VIETNAMESE_CHARSET): Remove duplicate defines.
8783         * lib/comctl32.def (ImageList_SetImageCount): Add stub.
8784
8785 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8786
8787         * include/dbt.h (DEV_BROADCAST_PORT): Add UNICODE version.
8788         Thanks to: Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8789
8790 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8791
8792         * include/unknwn.h: Include windows.h and ole2.h before header
8793         guard to avoid circular inclusion of COM headers.
8794
8795 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8796
8797         * include/dde.h (PackDDElParam, UnpackDDElParam,FreeDDElParam,
8798         ReuseDDElParam): Use __WIN64 compatible typedefs.
8799
8800 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8801
8802         * include/accctrl.h (ACTRL_ACCESS_ENTRY[AW]): Make
8803         lpInheritProperty member const.
8804         (ACTRL_PROPERTY_ENTRY[AW]): Make lpProperty member
8805         const.
8806
8807 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8808
8809         * include/commcat.h: Don't include windows.h or ole2.h ifdef
8810         COM_NO_WINDOWS_H.
8811         * include/unknwn.h: Ditto.
8812
8813 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8814
8815         * include/imm.h (ImmGetCompositionFont[AW],
8816         ImmSetCompositionFont[AW]): Add NOGDI guard.
8817
8818 2002-12-19  Danny Smith  <dannysmith@users.sourceforge.net>
8819
8820         * include/ddk/hidusage.h: Remove unneccessary #pragma pack's.
8821         * include/ddk/miniport.h (EMULATOR_PORT_ACCESS_TYPE): Define
8822         before using.
8823         (VIDEO_ACCESS_RANGE): Guard against prior definition.
8824         * include/ddk/minitape.h (INQUIRYDATA): Guard against prior
8825         definition.
8826         * include/ddk/ndis.h (DECLARE_UNKNOWN_PROTOTYPE): Correct macro.
8827         * include/ddk/ndisguid.h: Remove unneccessary #pragma pack's.
8828         * include/ddk/scsi.h (INQUIRYDATA): Guard against prior
8829         definition.
8830         * include/ddk/scsiwmi.h (GUID): Define if not already done.
8831         (LPCGUID): Likewise.
8832         * include/ddk/tdi.h: Close "Listen flags" comment.
8833         * include/ddk/tdistat.h: Remove unneccessary #pragma pack's.
8834         * include/ddk/video.h:  Add #pragma pack(push,4) to balance.
8835         (VIDEO_ACCESS_RANGE): Guard against prior definition.
8836         * include/ddk/videoagp.h:Add #pragma pack(push,4) to balance.
8837         * include/ddk/win2k.h: Likewise.
8838         * include/ddk/winddi.h: Likewise.
8839         * include/ddk/winddk.h: Likewise.
8840         * include/ddk/winnt4.h: Likewise.
8841         * include/ddk/ws2san.h: Likewise.
8842         * include/ddk/xfilter.h: Remove unbalanced #pragma pack(pop).
8843         * include/ddk/video.h: Don't process rest of file ifdef
8844         __WINDDI_H.
8845         * include/ddk/winddi.h: Don't process rest of file ifdef
8846         __VIDEO_H.
8847         * include/ddk/usb.h: Don't process rest of file ifdef
8848         __USBDI_H.
8849         * include/ddk/usbdi.h: Don't process rest of file ifdef
8850         __USB_H.
8851         * include/ddk/usbcamdi.h: Don't process rest of file if
8852         !defined(__USB_H) && !defined(__USBDI_H)
8853
8854 2002-12-18  James E. Lucas  <xelloss@users.sourceforge.net>
8855
8856         * include/winnetwk.h (WNetResourceInformation[AW]): Correct
8857         prototypes.
8858         * include/winuser.h (GetAncestor) Add prototype.
8859         (GA_PARENT, GA_ROOT, GA_ROOTOWNER): Add defines.
8860         (EWX_FORCEIFHUNG): Add define for _WIN32_WINNT >= 0x0500.
8861         (SPI_GETACTIVEWINDOWTRACKING, SPI_GETACTIVEWNDTRKZORDER,
8862         SPI_GETACTIVEWNDTRKTIMEOUT, SPI_SETACTIVEWINDOWTRACKING
8863         SPI_SETACTIVEWNDTRKZORDER, SPI_SETACTIVEWNDTRKTIMEOUT): Add
8864         defines.
8865         * lib/user32.def (GetAncestor@8): Add stub.
8866
8867 2002-12-15  Danny Smith  <dannysmith@users.sourceforge.net>
8868
8869         * include/windows.h: Guard inclusion of wingdi.h,
8870         commdlg.h, winspool.h, ole2.h with NOGDI.
8871         * include/winuser.h (ICONMETRICS, NONCLIENTMETRICS,
8872         ChangeDisplaySettings, CreateDesktop, EnumDisplaySettings):
8873         Guard with NOGDI.
8874
8875 2002-12-12  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8876
8877         * include/oleacc.h (SELFLAG_*): Change to enum.
8878
8879 2002-12-11  Danny Smith  <dannysmith@users.sourceforge.net>
8880
8881         * include/shlobj.h (IShellLinkW::GetPath): Correct prototype.
8882         Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
8883
8884 2002-12-09  Danny Smith  <dannysmith@users.sourceforge.net>
8885
8886         * include/shellapi.h (ExtractIconEx[AW]): Correct return type
8887         to UINT.
8888         Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
8889
8890 2002-12-07  Danny Smith  <dannysmith@users.sourveforge.net>
8891
8892         * include/winuser.h (AllowSetForegroundWindow,
8893         LockSetForegroundWindow): Add prototypes.
8894         (ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK) Add defines.
8895         Thanks to:  Pat Thoyts  <patthoyts@users.sourceforge.net>
8896         * lib/winuser.def (AllowSetForegroundWindow,
8897         LockSetForegroundWindow): Add stubs.
8898
8899 2002-12-06  Ken Fitlike  <kenfitlike@users.sourceforge.net>
8900
8901         * include/commctrl.h (TN_GETDISPINFO[AW]): Add defines and
8902         UNICODE mappings.
8903         (tagNMTTDISPINFO[AW]): Replace obsolete struct names
8904         tagTOOLTIPTEXT[AW] and typedefs. Add defines for backward
8905         compatability. Add lParam field. Add UNICODE mappings for new
8906         names.
8907
8908 2002-12-02  Andrew Stadt  <acstadt@sympatico.ca>
8909
8910         * include/shellapi.h (_SHFILEOPSTRUCTA,_SHFILEOPSTRUCTW):
8911         Wrap with pshpack2.h/poppack.h to correct alignment.
8912
8913 2002-12-02  Ken Fitlike  <kenfitlike@users.sourceforge.net>
8914
8915         * include/commctrl.h (LVBKIF_*): Add defines.
8916         (LVM_SETIMAGE[AW]): Add defines and UNICODE mappings.
8917         (LVM_GETIMAGE[AW]): Add defines and UNICODE mappings.
8918         (LVBKIMAGE[AW]): Add defines and UNICODE mappings.
8919         (LPLVBKIMAGE[AW]): Add defines and UNICODE mappings.
8920         (LVM_GETBKIMAGE[AW]): Add defines and UNICODE mappings.
8921         (LVM_SETBKIMAGE[AW]): Add defines and UNICODE mappings.
8922         (ListView_GetBkImage): Add define.
8923         (ListView_SetBkImage): Add define.
8924         (LVBKIMAGE): Add structures and typedefs.
8925
8926 2002-11-25  Earnie Boyd  <earnie@users.sf.net>
8927
8928         * include/w32api.h: Increment to version 2.2
8929         * Makefile.in: Ditto.
8930
8931 2002-11-25  Earnie Boyd  <earnie@users.sf.net>
8932
8933         * lib/Makefile.in (dist, install): Correct the install destinations.
8934         * lib/ddk/Makefile.in (dist, install): Ditto.
8935
8936 2002-11-16  Danny Smith  <dannysmith@users.sourceforge.net>
8937
8938         * lib/uuid.c (CATID_InternetAware,CLSID_HttpSProtocol,
8939         CLSID_PSUrlMonProxy,CLSID_StdURLMoniker,IID_IObjectWithSite,
8940         IID_IPersistMoniker,IID_IProgressNotify): Correct off-by-one bug
8941         in definitions.
8942         (CLSID_CFontPropPage00, GUID_FONTUNDERSCORE11,
8943         IID_IOleControlSite89): Remove.
8944
8945 2002-11-15  Christopher Faylor  <cgf@redhat.com>
8946
8947         * lib/uuid.c (IID_IRunnableObject): Remove duplicate definition.
8948         (IID_IStdMarshalInfo): Ditto.
8949
8950 2002-11-15  Christopher Faylor  <cgf@redhat.com>
8951
8952         * lib/uuid.c (IID_IOleInPlaceSite): Remove duplicate definition.
8953         (IID_IPersistStorage): Ditto.
8954
8955 2002-11-15  Weiqi Gao  <weiqigao@users.sourceforge.net>
8956
8957         * lib/uuid.c (CLSID_PSClassObject, CLSID_PSEnumerators,
8958         IID_IClassActivator, IID_IClientSecurity, IID_ICreateTypeInfo,
8959         IID_ICreateTypeLib2, IID_IOleInPlaceSite, IID_IPersistStorage,
8960         IID_IRunnableObject, IID_IServerSecurity, IID_IStdMarshalInfo):
8961         Correct definitions.
8962
8963 2002-11-15  Danny Smith  <dannysmith@users.sourceforge.net>
8964
8965         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8966         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8967         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8968         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8969         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8970         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8971         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8972         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8973         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8974         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8975         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8976         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8977         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8978         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8979         xfilter.h): Change comment to refer w32api package, not MinGW.
8980
8981 2002-11-15  Danny Smith  <dannysmith@users.sourceforge.net>
8982
8983         * include/ddk/ntddk.h: Include winnt.h as system header.
8984
8985 2002-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
8986
8987         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8988         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8989         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8990         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8991         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8992         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8993         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8994         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8995         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8996         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8997         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8998         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8999         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
9000         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
9001         xfilter.h): Fix typo in disclaimer comment.
9002
9003 2002-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
9004
9005         * include/exdisp.h: Include oaidl.h as system header.
9006
9007 2002-11-12  Earnie Boyd  <earnie@users.sf.net>
9008
9009         * include/w32api.h (__W32API_VERSION): Fix.
9010
9011 2002-11-09  Weiqi Gao  <weiqigao@users.sourceforge.net>
9012
9013         * lib/uuid.c (IID_ICatInformation): Correct definition.
9014
9015 2002-11-07  Danny Smith  <dannysmith@users.sourceforge.net>
9016
9017         * include/oleauto.h (DeregisterTypeLib): Remove.
9018         (UnRegisterTypeLib): Add prototype.
9019
9020 2002-11-07  Christopher January  <chris@atomice.net>
9021
9022         * include/winioctl.h: Add definition for IOCTL_DISK_UPDATE_DRIVE_SIZE.
9023
9024 2002-11-04  Danny Smith  <dannysmith@users.sourceforge.net>
9025
9026         * include/winnt.h (VerSetConditionMask): Add prototype.
9027         * lib/kernel32.def (VerifyVersionInfo[AW]): Add stubs.
9028
9029 2002-10-16  Danny Smith  <dannysmith@users.sourceforge.net>
9030
9031         * include/winuser.h (MONITORINFOEX[AW]): Add structure
9032         definitions and ANSI/UNICODE mappings.
9033         Cleanup whitespace.
9034
9035 2002-10-14  Earnie Boyd  <earnie@users.sf.net>
9036
9037         * Makefile.in: Add components for lib/ddk.  Adjust for autoconf-2.53.
9038         * configure.in: Ditto.
9039         * lib/Makefile.in: Ditto.
9040         * lib/ddk/Makefile.in: Correct installation procedure.  Adjust for
9041         autoconf-2.53.
9042         * configure: Regenerate.
9043
9044 2002-10-14  Danny Smith  <dannysmith@users.sourceforge.net>
9045
9046         * include/windows.h: Don't include basetyps.h.
9047         * include/objfwd.h: Do include basetyps.h.
9048
9049 2002-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
9050
9051         * include/objbase.h: Include rpc.h and rpcndr.h
9052         before header guard.
9053
9054 2002-10-11  Danny Smith  <dannysmith@users.sourceforge.net>
9055
9056         * include/olectl.h (PROPPAGEINFO): Change type of
9057         field cb to ULONG.
9058
9059 2002-10-11  Steven Edwards  <Steven_Ed4153@yahoo.com>
9060
9061         * lib/ntdll.def (RtlAcquireResourceExclusive,
9062         RtlAcquireResourceShared, RtlDeleteResource,
9063         RtlInitializeResource, RtlReleaseResource,
9064         RtlTimeToSecondsSince1970) : Added missing exports.
9065
9066 2002-10-08  Heiko Gerdau  <hg@technosis.de>
9067
9068         * include/oleacc.h: New file.
9069         * include/winuser.h (ENDSESSION_LOGOFF) Add define.
9070         (OBJID_*) Add defines.
9071         * lib/uuid.c: Add DEFINE_GUID for IID_IAccessible.
9072         * lib/test.c: Include oleacc.h.
9073
9074 2002-10-06  Casper Hornstrup  <chorns@it.dk>
9075
9076         * include/ddk: New subdir.
9077         * lib/ddk: Ditto.
9078         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
9079         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
9080         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
9081         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
9082         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
9083         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
9084         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
9085         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
9086         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
9087         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
9088         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
9089         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
9090         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
9091         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
9092         xfilter.h): New files.
9093         * lib/ddk/(Makefile.in, apcups.def, cfgmgr32.def, dxapi.def,
9094         hal.def, hid.def, hidparse.def, mcd.def, ndis.def, ntoskrnl.def,
9095         scsiport.def, tdi.def, usbcamd.def, usbcamd2.def, videoprt.def,
9096         win32k.def): Ditto.
9097
9098 2002-10-04  Steven Edwards  <Steven_Ed4153@yahoo.com>
9099
9100         * lib/ntdll.def (NtAccessCheck, NtAdjustPrivilegesToken,
9101         NtCreateKey, NtDeleteKey, NtDeleteValueKey, NtEnumerateKey,
9102         NtEnumerateValueKey, NtOpenKey, NtOpenProcessToken,
9103         NtOpenThreadToken, NtQueryInformationToken, NtQueryKey,
9104         NtQueryValueKey, NtSetSecurityObject, NtSetValueKey,
9105         RtlAddAccessAllowedAce, RtlCreateAcl,
9106         RtlCreateSecurityDescriptor, RtlCreateUnicodeStringFromAsciiz,
9107         RtlGetAce, RtlGetControlSecurityDescriptor,
9108         RtlGetDaclSecurityDescriptor,RtlGetGroupSecurityDescriptor,
9109         RtlGetOwnerSecurityDescriptor,RtlGetSaclSecurityDescriptor,
9110         RtlImpersonateSelf, RtlIsTextUnicode, RtlLargeIntegerAdd,
9111         RtlLengthSecurityDescriptor, RtlMakeSelfRelativeSD,
9112         RtlMultiByteToUnicodeN RtlMultiByteToUnicodeSize,
9113         RtlOpenCurrentUser, RtlSetDaclSecurityDescriptor,
9114         RtlSetGroupSecurityDescriptor, RtlSetOwnerSecurityDescriptor,
9115         RtlSetSaclSecurityDescriptor, RtlValidSecurityDescriptor,
9116         ZwAccessCheck, ZwAdjustPrivilegesToken, ZwCreateKey,
9117         ZwDeleteValueKey, ZwEnumerateKey, ZwEnumerateValueKey,
9118         ZwOpenKey, ZwOpenProcessToken, ZwOpenThreadToken,
9119         ZwQueryInformationToken, ZwQueryKey, ZwQueryValueKey
9120         ZwSetSecurityObject, ZwSetValueKey): Added missing exports.
9121
9122 2002-10-04  "KJK::Hyperion"  <noog@libero.it>
9123
9124         *include/windef.h (WPARAM): Update typedef.
9125         (LPARAM): Ditto.
9126         (LRESULT): Ditto.
9127
9128 2002-10-04  "KJK::Hyperion"  <noog@libero.it>
9129
9130         * include/shlobj.h (CSIDL_*): Add defines.
9131
9132 2002-09-24  Danny Smith  <dannysmith@users.sourceforge.net>
9133
9134         * include/ws2tcpip.h: Throw error if winsock.h, not winsock2.h
9135         has been included first.
9136
9137 2002-09-24  René Møller Fonseca  <fonseca@users.sourceforge.net>
9138
9139         * include/winbase.h (FindFirstFileEx): Fixed ANSI mode.
9140         * include/wingdi.h (PFD_SWAP_LAYER_BUFFERS):Added define.
9141         * include/winuser.h (AppendMenu[AW]): Fixed prototypes.
9142
9143 2002-09-18  Eric R. Krause  <ekrause_98@users.sourceforge.net>
9144
9145         * include/winuser.h (DS_SHELLFONT): Define.
9146
9147 2002-09-17  Daniel Schlyder  <daniel@dascdev.net>
9148
9149         * include/winnt.h (VER_SUITE_BLADE): Define.
9150
9151 2002-09-17  Danny Smith  <dannysmith@users.sourceforge.net>
9152
9153         * include/shlobj.h (SHGetSpecialFolderPath[AW]):
9154         Add _WIN32_IE guard. Correct prototype for wide version.
9155         (SHGetFolderPath): Add comment on shfolder.dll.
9156         (SHGetFolderLocation): Add prototyope for WinME and W2K.
9157         (SHGetFolderPathAndSubDir[AW]): Add prototypes for XP.
9158
9159 2002-09-16  Danny Smith  <dannysmith@users.sourceforge.net>
9160
9161         * lib/shell32.def (SHGetFolderPath[AW]): Add comment.
9162         * lib/shfolder.def: New file.
9163
9164 2002-09-12  Danny Smith  <dannysmith@users.sourceforge.net>
9165
9166         * include/winsock.h (timeval): Guard struct and associated
9167         macros with _TIMEVAL_DEFINED.
9168         * include/winsock2.h (timeval): Likewise.
9169
9170 2002-09-11  Danny Smith  <dannysmith@users.sourceforge.net>
9171
9172         * lib/shell32.def (SHBindtoParent,SHCreateDirectoryEx[AW],
9173         SHCreateProcessAsUserW,SHCreateQueryCancelAutoPlayMoniker,
9174         SHCreateShellItem,SHEmptyRecycleBin[AW],
9175         SHEnumerateUnreadMailAccountsW,SHExtractIconsW,
9176         SHGetDataFromIDList[AW],SHGetDiskFreeSpace[AW],
9177         SHGetDiskFreeSpaceEx[AW],SHGetFolderLocation,
9178         SHGetFolderPathAndSubDir[AW],SHGetIconOverlayIndex[AW],
9179         SHGetNewLinkInfo[AW],SHGetSettings,SHGetUnreadMailCountW,
9180         SHInvokePrinterCommand[AW],SHIsFileAvailableOffline,
9181         SHLoadNonloadedIconOverlayIdentifiers,
9182         SHOpenFolderAndSelectItems,SHParseDisplayName,
9183         SHPathPrepareForWrite[AW],SHQueryRecycleBin[AW],
9184         SHSetLocalizedName,SHSetUnreadMailCountW,
9185         SHUpdateRecycleBinIcon: Add missing stubs.
9186
9187 2002-09-07  Earnie Boyd  <earnie@users.sf.net>
9188
9189         * include/windef.h (WINVER): Add documentation.
9190         (_WIN32_WINNT): Ditto.
9191         Special thanks to Paul Schmidt <paul@tricattechnologies.com>
9192
9193 2002-09-06  Danny Smith  <dannysmith@users.sourceforge.net>
9194
9195         * lib/Makefile.in (TEST_OPTIONS): Define WINVER to 0x0666.
9196
9197 2002-09-04  Kevin Chase  <kevincha99@hotmail.com>
9198
9199         * include/winbase.h (AllocateUserPhysicalPages,
9200         MapUserPhysicalPages, MapUserPhysicalPagesScatter,
9201         FreeUserPhysicalPages): Add prototypes.
9202         * lib/kernel32.def: Add function stubs for above.
9203
9204 2002-09-03  René Møller Fonseca  <fonseca@users.sourceforge.net>
9205
9206         * include/winuser.h (IDTRYAGAIN,IDCONTINUE): Add defines.
9207         Add WINVER guards for dialog box command id defines.
9208
9209 2002-09-03  Earnie Boyd  <earnie@users.sf.net>
9210
9211         * include/wincon.h (GetConsoleWindow): Add _WIN32_WINNT >= 0x0500 guard.
9212
9213 2002-08-30  Christopher January  <ccj00@doc.ic.ac.uk>
9214
9215         * include/wincon.h: Define GetConsoleWindow(void).
9216
9217 2002-08-28  Earnie Boyd  <earnie@users.sf.net>
9218
9219         * include/w32api.h: Increment version to 2.1.
9220         * Makefile.in: Ditto.
9221
9222 2002-08-26  Bart Oldeman  <bart.oldeman@btinternet.com>
9223
9224         * include/winsock2.h (SOCKET_ADDRESS): Define if
9225         __CSADDR_T_DEFINED is not defined (copied from nspapi.h)
9226         (CSADDR_INFO): Ditto.
9227         (nspapi.h) : Don't include. Removed FIXME comment.
9228         * include/nspapi.h (SOCKET_ADDRESS) Only define if
9229         __CSADDR_T_DEFINED is not defined.
9230         (CSADDR_INFO): Ditto.
9231         (BLOB): Add structure and typedef if not already defined.
9232         (NS_*): Add defines.
9233         (SERVICE_*): Ditto.
9234         (SERVICE_ADDRESS): Add structure and typedefs.
9235         (SERVICE_ADDRESSES): Ditto.
9236         (SERVICE_INFO[AW]): Ditto, and add UNICODE mappings.
9237         (LPSERVICE_ASYNC_INFO): Add typedef.
9238         (SetService[AW], GetAddressByName[AW]): Add prototypes and UNICODE
9239         mappings.
9240         * include/wsipx.h: New file.
9241         * include/svcguid.h: New file.
9242         * lib/test.c: Include wspix.h and svcguid.h.
9243
9244 2002-08-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9245
9246         * include/wsahelp.h: New file.
9247         * lib/test.c: Include wsahelp.h.
9248
9249 2002-08-21  Earnie Boyd  <earnie@users.sf.net>
9250
9251         * include/commctrl.h (NMCUSTOMDRAW): Fix lItemlParam.
9252         Thanks to: "Phil Dempster" <p_dempster@yahoo.co.uk>.
9253
9254 2002-08-20  Danny Smith  <dannysmith@users.sourceforge.net>
9255
9256         * include/ws2spi.h: Modify comment about being part of
9257         mingw32 package.
9258         (winsock2.h): Change "" to <>.
9259
9260 2002-08-20  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9261
9262         * include/ws2spi.h: New file.
9263         * lib/test.c: Include ws2spi.h.
9264
9265 2002-08-20  Danny Smith  <dannysmith@users.sourceforge.net>
9266
9267         * include/winsock2.h (WSAIsBlocking,WSAUnhookBlockingHook,
9268         WSASetBlockingHook,WSACancelBlockingCall): Expose deprecated
9269         functions.
9270
9271 2002-08-17  Danny Smith  <dannysmith@users.sourceforge.net>
9272
9273         * include/winuser.h (CURSOR_SHOWING) Add define.
9274         Thanks to: Jan Hlavatý  <hlavac@users.sourceforge.net>
9275
9276 2002-08-17  Danny Smith  <dannysmith@users.sourceforge.net>
9277
9278         * include/winerror.h: Cast OLE error codes to HRESULT.
9279         Thanks to: Gunnar Degnbol <gdegnbol@users.sourceforge.net>
9280
9281 2002-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
9282
9283         * include/wincrypt.h (ALG_*): Add defines.
9284         (CALG_*): Ditto.
9285         (CRYPT_*): Ditto.
9286         (PP_*): Ditto.
9287         (PROV_*): Ditto.
9288         (PRIVATEKEYBLOB): Add define.
9289
9290 2002-08-14  Earnie Boyd  <earnie@users.sf.net>
9291
9292         * include/shlobj.h (SHGetFolderPath): Add define.
9293         * lib/shell32.def (SHGetSpecialFolderPath): Add export.
9294         (SHGetFolderPath): Ditto.
9295
9296 2002-08-13  Danny Smith  <dannysmith@users.sourceforge.net>
9297
9298         * include/commdlg.h: Don't include COM headers or use
9299         COM-dependent symbols if __OBJC__.
9300
9301 2002-08-13  Danny Smith  <dannysmith@users.sourceforge.net>
9302
9303         * include/wincrypt.h (CryptDuplicateHash, CryptDuplicateKey):
9304         Add prototypes.
9305
9306 2002-08-12  Andriy Palamarchuk  <apa3a@yahoo.com>
9307
9308         * include/shellapi.h (FOF_NOERRORUI): Add define.
9309
9310 2002-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
9311
9312         * include/objidl.h (IEnumMoniker): Put 'interface' back.
9313
9314 2002-08-11  Danny Smith  <dannysmith@users.sourceforge.net>
9315
9316         * include/objidl.h (IEnumMoniker): Correct declaration.
9317
9318 2002-08-09  Mark Schreiber  <mark7@users.sourceforge.net>
9319
9320         * include/wincrypt.h (CRYPT_NOHASHOID): Add define.
9321
9322 2002-08-09  Danny Smith  <dannysmith@users.sourceforge.net>
9323
9324         * include/commctrl.h: Whitespace change.
9325
9326 2002-08-09  Lars Munch  <lars@segv.dk>
9327
9328         * include/commctrl.h (tagTVHITTESTINFO): Replace obsolete
9329         struct name _TVHITTESTINFO and typedefs and add defines for
9330         backward compatability.
9331         (ListView_SetExtendedListViewStyleEx): Add macro.
9332
9333 2002-08-05  Danny Smith  <dannysmith@users.sourceforge.net>
9334
9335         * include/wingdi.h (AlphaBlend,GradientFill,TransparentBlt):
9336         Add prototypes.
9337         * lib/msimg32.def: New file, with stubs for above.
9338
9339 2002-08-03  Danny Smith  <dannysmith@users.sourceforge.net>
9340
9341         * include/winbase.h (AddAccessAllowedAceEx,AddAccessDeniedAceEx,
9342         GetFileSizeEx, SetFilePointerEx): Add prototypes.
9343         (EncryptFile[AW], FileEncryptionStatus[AW]): Add prototypes
9344         and UNICODE mappings.
9345
9346 2002-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
9347
9348         * include/winbase.h (ReadFileScatter, WriteFileGather):
9349         Change second parameter to pointer.
9350
9351 2002-07-31  Danny Smith  <dannysmith@users.sourceforge.net>
9352
9353         * include/wininet.h (InternetReadFileEx[AW]). Add prototypes and
9354         UNICODE mappings.
9355         * lib/wininet.def: Regenerate.
9356
9357 2002-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
9358
9359         * include/windef.h (PVOID): Move typedef to...
9360         * include/winnt: ...here.
9361         (PVOID64): New typedef.
9362
9363         * include/winnt,h (FILE_SEGMENT_ELEMENT): Define union.
9364         * include/winbase.h (ReadFileScatter, WriteFileGather):
9365         Add prototypes.
9366
9367         * include/winnt,h (PROCESSOR_ARCHITECTURE_*): Add defines.
9368         (PROCESSOR_INTEL_IA64): Add define.
9369
9370 2002-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
9371
9372         * include/oleidl.h (MK_ALT): Define.
9373
9374 2002-07-26  Mattia Barbon  <mbarbon@dsi.unive.it>
9375
9376         * include/exdisp.h: New file.
9377         * include/exdispid.h: New file.
9378         * include/mshtml.h: New file.
9379         * lib/test.c: #include exdisp.h and mshtml.h
9380         * lib/uuid.c (CLSID_WebBrowser, DIID_DWebBrowserEvents,
9381         DIID_DWebBrowserEvents2, IID_IHTMLDocument, IID_IHTMLDocument2,
9382         IID_IHTMLElement, IID_IHTMLSelectionObject, IID_IHTMLTxtRange,
9383         IID_IWebBrowser, IID_IWebBrowser2, IID_IWebBrowserApp):
9384         New GUIDs.
9385
9386 2002-07-26  Mattia Barbon  <mbarbon@dsi.unive.it>
9387
9388         * include/docobj.h: New file.
9389         * include/idispids.h: New file.
9390         * include/objidl.h (IID_IMoniker): Declare.
9391         * include/ocidl.h (READYSTATE): New enum.
9392         (IOleInPlaceSiteEx): New interface.
9393         * include/olectlid.h (IID_IEnumSTATSTG): New interface
9394         identifier.
9395         * include/oleidl.h (IOleItemContainer, IOleInPlaceObject,
9396         IOleInPlaceSite): New interfaces.
9397         * lib/test.c: #include docobj.h,idispids.h,
9398
9399 2002-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
9400
9401         * include/shlobj.h (BFFM_VALIDATEFAILED[AW]): Add defines.
9402         (BFFM_SETSTATUSTEXT, BFFM_SETSELECTION): UNICODE them.
9403
9404 2002-07-25  Mattia Barbon  <mbarbon@dsi.unive.it>
9405
9406         * include/commctrl.h: Avoid redefinition of CDN_FIRST/LAST.
9407         * include/commdlg.h: Likewise.
9408
9409 2002-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
9410
9411         * include/oleauto.h (V_UNION): Correct definition for case of
9412         NONAMELESSUNION:
9413         (V_VT): Likewise.
9414
9415 2002-07-23  Danny Smith  <dannysmith@users.sourceforge.net>
9416
9417         * include/oleauto.h (V_BOOL): Define in terms of boolVal,
9418         not bool, for C as well as C++.
9419
9420 2002-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
9421
9422         * include/shlwapi.h: New file.
9423         Thanks to: Mattia Barbon  <mbarbon@dsi.unive.it> and
9424         Victor Porton  <porton@narod.ru> for contributions.
9425         * lib/shlwapi.def: New file.
9426         * lib/test.c: #include shlwapi.h.
9427
9428 2002-07-21  Bart Oldeman  <bart.oldeman@btinternet.com>
9429
9430         * include/shlobj.h (FCIDM_MENU_FAVORITES): Remove bogus
9431         character.
9432         * include/winsock2.h (struct sockaddr): Use __int64 instead of
9433         long long.
9434         * lib/kernel32.c (GetCurrentFiber, GetFiberData): Watcom
9435         does not need external *Fiber library functions.
9436
9437 2002-07-20  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9438
9439         * include/winbase.h (GetEnvironmentStringsA): Remove duplicate
9440         definition.
9441         (Interlocked*): Wrap in #ifndef __INTERLOCKED_DECLARED to
9442         avoid compile error when already defined.
9443
9444 2002-07-20  Steven Edwards  <Steven_Ed4153@yahoo.com>
9445
9446         * include/winuser.h (WM_MENURBUTTONUP): Add define.
9447
9448 2002-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
9449
9450         * include/commdlg.h: Define CDN_* notification message constants
9451         as UINT.
9452
9453 2002-07-17  Mattia Barbon  <mbarbon@users.sourceforge.net>
9454
9455         * include/commctrl.h: Define notification message constants for
9456         NMHDR.code as UINT.
9457
9458 2002-07-17   Bart Oldeman  <bart.oldeman@btinternet.com>
9459
9460         * include/ddeml.h (MH_*) Add defines.
9461         (MONHSZSTRUCT): Add structure and typedefs.
9462         (MONLINKSTRUCT): Ditto.
9463         (MONCONVSTRUCT): Ditto.
9464         (MONCBSTRUCT): Ditto.
9465         (MONERRSTRUCT): Ditto.
9466         (MONMSGSTRUCT): Ditto.
9467         * include/windef.h: Don't define __cdecl or _cdecl for
9468         __WATCOM__.
9469         Don't define _export or __export for __WATCOM__.
9470         * include/windows.h (imm.h): #include.
9471         * include/winnt.h (LPEXCEPTION_RECORD): Add typedef.
9472
9473 2002-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
9474
9475         * include/wtypes.h: Remove duplicate #includes of rpc.h and
9476         rpcndr.h.
9477
9478 2002-07-05  Luke Dunstan  <infidel@users.sourceforge.net>
9479
9480         * include/winbase.h (OpenThread): Add prototype.
9481         * lib/kernel32.def (OpenThread): Add symbol.
9482
9483 2002-07-04  Luke Dunstan  <infidel@users.sourceforge.net>
9484
9485         * include/wtypes.h (HMETAFILEPICT): Add typedef.
9486
9487 2002-07-04  Danny Smith  <dannysmith@users.sourceforge.net>
9488
9489         * include/rpc.h: Conditionally include <windows.h> before
9490         header guard.
9491         * include/wtypes.h: Include <rpc.h> and <rpcndr.h> before
9492         header guard.
9493
9494 2002-07-02  Danny Smith  <dannysmith@users.sourceforge.net>
9495
9496         * include/commctrl.h (WC_*): Remove some duplicate defines.
9497
9498 2002-07-02  Ken Fitlike  <kenfitlike@hotmail.com>
9499
9500         * include/commctrl.h (WC_IPADDRESS[AW]): Add defines and
9501         UNICODE mappings.
9502         (IPM*): Add defines.
9503         (IPN_*): Add defines.
9504         (NMIPADDRESS): Add structure and typedefs.
9505         (MAKEIPADDRESS): Add macro.
9506         (MAKEIPRANGE): Add macro.
9507         (FIRST_IPADDRESS): Add macro.
9508         (SECOND_IPADDRESS): Add macro.
9509         (THIRD_IPADDRESS): Add macro.
9510         (FOURTH_IPADDRESS): Add macro.
9511
9512 2002-06-25  Conrad Scott  <conrad.scott@dsl.pipex.com>
9513
9514         * include/winbase.h (FILE_FLAG_FIRST_PIPE_INSTANCE): Add constant.
9515
9516 2002-06-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9517
9518         * include/winbase.h (WINBASEAPI): Don't define if prior
9519         definition.
9520
9521         * include/winioctl.h (PARTITION_FAT32, PARTITION_FAT32_XINT13,
9522         PARTITION_XINT13, PARTITION_XINT13_EXTENDED, PARTITION_LDM,
9523         PARTITION_UNIX): Add defines.
9524         (PDRIVE_LAYOUT_INFORMATION): Add typedef.
9525         (IsRecognizedPartition): Also check for PARTITION_FAT32,
9526         PARTITION_FAT32_XINT13 and PARTITION_XINT13.
9527         (IsContainerPartition): Add macro.
9528
9529 2002-06-25  Ken Fitlike  <kenfitlike@hotmail.com>
9530
9531         * include/commctrl.h: (CBEIF_*): Add defines.
9532         (CBEN_*): Add defines and UNICODE mappings
9533         (WC_COMBOBOXEX[AW]): Add defines and UNICODE mappings.
9534         (CBEMAXSTRLEN): Add define.
9535         (COMBOBOXEXITEM[AW]): Add structures and typedefs.
9536         (NMCOMBOBOXEX[AW]): Add structures and typedefs.
9537         (NMCBEDRAGBEGIN[AW]): Add structure and typedefs.
9538         (NMCBEENDEDIT[AW]): Add structure and typedefs.
9539
9540 2002-06-24  Danny Smith  <dannysmith@users.sourceforge.net>
9541
9542         * include/objidl.h (struct tagPROPVARIANT): Kill obsolete
9543         union member _VARIANT_BOOL bool.
9544
9545 2002-06-24  Danny Smith  <dannysmith@users.sourceforge.net>
9546
9547         * include/winioctl.h (FILE_SPECIAL_ACCESS): Add define.
9548
9549 2002-06-24  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9550
9551         * include/winnt.h (PCCHAR, FCHAR, FSHORT, FLONG,
9552         PLUID_AND_ATTRIBUTES,PSECURITY_IMPERSONATION_LEVEL,
9553         PSID_AND_ATTRIBUTES, PTOKEN_TYPE, PTOKEN_STATISTICS):
9554         Add typedefs.
9555         (CCHAR): Correct typedef.
9556         (PROCESS_SET_SESSIONID, SECURITY_*,SECTION_MAP_EXECUTE):
9557         Add defines.
9558
9559 2002-06-24  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9560
9561         * README.w32api: Correct spelling error.
9562
9563 2002-06-19  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9564
9565         * include/winuser.h (FLASHW_*,INPUT_MOUSE,INPUT_KEYBOARD,
9566         INPUT_HARDWARE): Add defines.
9567         (HDEVNOTIFY): Add typedef.
9568         (FLASHWINFO,tagMOUSEMOVEPOINT,tagMOUSEINPUT,tagKEYBDINPUT,
9569         tagHARDWAREINPUT,tagINPUT,tagGUITHREADINFO): Define structs and
9570         typedefs.
9571         (CreateDesktop[AW],CreateMDIWindow[AW],GetClassInfo[AW],
9572         GetClassInfoEx[AW],GetKeyboardLayoutList,
9573         MessageBoxIndirect[AW],MsgWaitForMultipleObjects,
9574         MsgWaitForMultipleObjectsEx, RegisterClass[AW],
9575         RegisterClassEx[AW]): Correct prototypes.
9576
9577 2002-06-19  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9578
9579         * include/ddeml.h (DdeCreateStringHandle{AW]:Correct
9580         prototypes.
9581         * include/winsvc.h (StartServiceW): Correct prototype.
9582         * include/winbase.h (BackupRead,BackupSeek,BackupWrite,
9583         FileTimeToLocalFileTime, GetAce,GetPrivateProfileStruct[AW],
9584         GetTickCount,InterlockedExchangeAdd,
9585         WritePrivateProfileStruct[AW]: Correct prototypes.
9586         (GetEnvironmentStrings): Correct mapping to
9587         GetEnvironmentStringsA.
9588         * include/winver.h (VerQueryValueA,VerQueryValueW):
9589         Correct prototypes.
9590         * include/wincon.h (CreateConsoleScreenBuffer): Correct
9591         prototype.
9592         * include/winreg.h (RegQueryMultipleValues[AW],
9593         RegQueryValueEx[AW]):Correct prototypes.
9594         * include/wingdi.h (PXFORM, PLOGBRUSH, PLOGPEN, PPOLYTEXTA,
9595         PPOLYTEXTW): Add typedefs.
9596         (_DESIGNVECTOR,COLOR16, _TRIVERTEX, _DISPLAY_DEVICE): Add
9597         structures and typedefs.
9598         (MM_MAX_NUMAXES): Add define.
9599         (EnumFontsW,GetEnhMetaFilePixelFormat,
9600         wglGetLayerPaletteEntries): Correct prototypes.
9601         * include/winerror.h (RPC_X_INVALID_PIPE_OBJECT,
9602         RPC_X_WRONG_PIPE_ORDER,RPC_X_WRONG_PIPE_VERSION,
9603         RPC_S_SEND_INCOMPLETE): Add defines.
9604
9605 2002-06-17  Casper S. Hornstrup  <chorns@users.sourceforge.net>
9606
9607         * include/windef.h (_fastcall, __fastcall, FASTCALL):
9608         Add defines.
9609
9610 2002-06-16  Egor Duda  <deo@logos-m.ru>
9611
9612         * include/ntdll.h: New file.
9613         * lib/ntdll.def: Add NtShutdownSystem.
9614
9615 2002-06-16  Steven Edwards  <Steven_Ed4153@yahoo.com>
9616
9617         * lib/dinput.def (DirectInputCreateEx): Add stub.
9618         * lib/ntdll.def: New file.
9619
9620 2002-06-14  Earnie Boyd  <earnie@users.sf.net>
9621
9622         * include/w32api.h: Change to version 2.0 to reflect the change
9623         in the license.
9624         * README: Renamed.
9625         * README.w32api: Renamed from README.  Modified license to remove
9626         the restriction of notifying the author based on the fact that the
9627         author is unreachable at the notified address.
9628         * Makefile.in (VERSION): Change to 2.0.
9629
9630 2002-06-14  Earnie Boyd  <earnie@users.sf.net>
9631
9632         * include/wingdi.h (GetEnhMetaFileBits): Correct typo.
9633         * Makefile.in (bindist): Correct the MinGW distribution.
9634
9635 2002-06-13  Earnie Boyd  <earnie@users.sf.net>
9636
9637         * include/winuser.h (MOUSEHOOKSTRUCT): Define structure.
9638         * include/wingdi.h (GetEnhMetaFileBits): Define prototype.
9639
9640 2002-06-13  Danny Smith  <dannysmith@users.sourceforge.net>
9641
9642         * lib/test.c: #include comcat.h.
9643
9644 2002-06-13  John K. Hohm  <jhohm@acm.org>
9645
9646         * include/comcat.h: New file.
9647
9648 2002-06-09  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9649
9650         * include/richedit.h (EM_*, TM_*, GT_*): Add new defines.
9651         (GETTEXTEX): Add structure definition.
9652
9653 2002-06-08  Danny Smith  <dannysmith@users.sourceforge.net>
9654
9655         * include/windows.h (ole2.h): #include if !__OBJC__ and
9656         __GNUC__ >=3 and !WIN32_LEAN_AND_MEAN.
9657
9658 2002-06-07  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9659
9660         * include/mapi.h: Change LPTSTR to LPSTR throughout.
9661
9662 2002-06-05  Danny Smith  <dannysmith@users.sourceforge.net>
9663
9664         * include/winnt.h (PACE_HEADER, PACCESS_ALLOWED_ACE,
9665         PACCESS_DENIED_ACE): Add typedefs.
9666
9667 2002-06-03  Danny Smith  <dannysmith@users.sourceforge.net>
9668
9669         * lib/thunk32.def (LIBRARY): Change to KERNEL32.dll.
9670
9671 2002-06-03 Steven Edwards  <Steven_Ed4153@yahoo.com>
9672
9673         * lib/kernel32.def (ConvertToGlobalHandle): Add stub.
9674
9675 2002-06-01  Danny Smith  <dannysmith@users.sourceforge.net>
9676
9677         * include/windef.h: Fix typo in last change.
9678
9679 2002-06-01  Danny Smith  <dannysmith@users.sourceforge.net>
9680
9681         * include/windef.h: Add no-op __try, __except, __finally
9682         defines from ...
9683         * include/excpt.h: Remove file.
9684         * include/windows.h: Don't include excpt.h.
9685
9686 2002-05-30  Christopher January  <chris@atomice.net>
9687
9688         * include/ntdef.h (ANSI_STRING, PANSI_STRING, OEM_STRING, POEM_STRING):
9689         Add missing typedefs.
9690
9691 2002-05-28  Earnie Boyd  <earnie@users.sf.net>
9692
9693         * include/w32api.h: Increment version to 1.5
9694         * Makefile.in: Ditto.
9695
9696
9697 2002-05-27  René Møller Fonseca  <fonseca@users.sourceforge.net>
9698
9699         * include/winreg.h: (RegConnectRegistry[AW]): Replace
9700         LP[W]STR with LPC[W]STR.
9701         (REG_QWORD, REG_QWORD_LITTLE_ENDIAN): Add defines.
9702         Clean up whitespace.
9703
9704 2002-05-27  Rick Rankin  <rick_rankin@yahoo.com>
9705
9706         * include/winnls.h: Add #define for LOCALE_RETURN_NUMBER.
9707
9708 2002-05-21  Earnie Boyd  <earnie@users.sf.net>
9709
9710         * Makefile.in: Increment VERSION to 1.4.
9711         (conf_prefix): New variable.
9712         (bindist): Modify target to use $(conf_prefix).
9713
9714 2002-05-20  Philip Aston  <philipa@mail.com>
9715
9716         * include/pbt.h (PBT_APMRESUMESUSPEND): Correct value is 7.
9717
9718 2002-05-20  René Møller Fonseca  <fonseca@users.sourceforge.net>
9719
9720         * include/lmaccess.h: (NetAccess*, NetGroup*,
9721         NetLocalGroup*, NetUser*, NetGet*, INetLogonControl[2],
9722         NetQueryDisplayInfotmationIndex): Replace LPWSTR with LPCWSTR.
9723
9724 2002-05-08  Danny Smith  <dannysmith@users.sourceforge.net>
9725
9726         * include/commctrl.h (ImageList_DragShowNolock): Remove
9727         conflicting redeclaration.
9728
9729 2002-05-07  Danny Smith  <dannysmith@users.sourceforge.net>
9730
9731         * include/windows.h: Move ANONYMOUS_UNION, _ANONYMOUS_STRUCT,
9732         STRICT and related defines to ...
9733         * include/windef.h: Here.
9734
9735 2002-05-03  Danny Smith  <dannysmith@users.sourceforge.net>
9736
9737         * include/winsock2.h (int32): Remove typedef.
9738         (SERVICETYPE): Add typedef.
9739         (struct _flowspec):Revise struct definition,  Comment
9740         on types used for members.
9741
9742 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9743
9744         * include/winnt.h (EVENT_*, SEMAPHORE_*,MUTEX_*): Remove
9745         more defines added in earlier change.
9746         * lib/Makefile.in (TEST_OPTIONS): Add -Wsystem-headers flag.
9747
9748 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9749
9750         * include/winnt.h (THREAD_PRIORITY_*): Remove defines
9751         added in last change.
9752
9753 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9754
9755         * include/winnt.h (THREAD_*, EVENT_*, MUTANT_*,
9756         SEMAPHORE_*, MUTEX_*, TIMER_*): Add new defines.
9757
9758 2002-05-01  Manu B  <contact.manu@wanadoo.fr>
9759
9760         * include/commctrl.h (SNDMSG): Define and use throughout
9761         in other macros instead of SendMessage.
9762         * include/commdlg.h (SNDMSG): Ditto.
9763
9764 2002-04-22  José Fonseca  <jrfonseca@users.sf.net>
9765
9766         * include/GL/gl.h: New file.
9767         * include/GL/glext.h: Ditto.
9768         * include/GL/glu.h: Ditto.
9769
9770 2002-04-09  Earnie Boyd  <earnie@users.sf.net>
9771
9772         * include/w32api.h: Increment version.
9773         * Makefile.in: Ditto.
9774
9775 2002-04-09  Earnie Boyd  <earnie@users.sf.net>
9776
9777         * Makefile.in (bindist): Use * instead of . for file list for tar
9778         command.
9779
9780 2002-04-02  Danny Smith  <dannysmith@users.sourceforge.net>
9781
9782         * include/wtypes.h (enum tagCLSCTX): Change formatting.
9783
9784 2002-04-02  Pat Thoyts  <patthoyts@users.sourceforge.net>
9785
9786         * include/objidl.h (IRunningObjectTable.Register): Correct
9787         prototype.
9788         * include/wtypes.h (ROTFLAGS_REGISTRATIONKEEPSALIVE,
9789         ROTFLAGS_ALLOWANYCLIENT): Add defines.
9790
9791 2002-03-31  Victor Porton  <porton@narod.ru>
9792
9793         * include/shellapi.h (SHGFI_ATTR_SPECIFIED): Add define.
9794
9795 2002-03-29  David Robinow  <drobinow@yahoo.com>
9796
9797         * include/wingdi.h (SetPixelFormat): Correct prototype.
9798
9799 2002-03-29  Phil Krylov  <likewolf@users.sourceforge.net>
9800
9801         * include/richedit.h (EM_SHOWSCROLLBAR): Add define.
9802
9803 2002-03-26  Phil Krylov  <likewolf@users.sourceforge.net>
9804
9805         * include/richedit.h (EM_GETSCROLLPOS, EM_SETSCROLLPSPOS):
9806         Add defines.
9807
9808 2002-03-14  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9809
9810         * include/richedit.h (RICHEDIT_CLASS): UNICODE it.
9811         * include/shlobj.h (IContextMenu2): Put methods in right order.
9812         * include/basetyps.h (REFGUID, REFIID, REFCLSID): Check for
9813         CINTERFACE before defining.
9814
9815 2002-03-09  Danny Smith  <dannysmith@users.sourceforge.net>
9816
9817         * include/accctrl.h: Add #pragma GCC system_header
9818         if __GNUC__ >= 3.
9819         * include/aclapi.h: Same.
9820         * include/basetsd.h: Same.
9821         * include/basetyps.h: Same.
9822         * include/cderr.h: Same.
9823         * include/cguid.h: Same.
9824         * include/commctrl.h: Same.
9825         * include/commdlg.h: Same.
9826         * include/cpl.h: Same.
9827         * include/cplext.h: Same.
9828         * include/custcntl.h: Same.
9829         * include/dbt.h: Same.
9830         * include/dde.h: Same.
9831         * include/ddeml.h: Same.
9832         * include/dlgs.h: Same.
9833         * include/excpt.h: Same.
9834         * include/httpext.h: Same.
9835         * include/imagehlp.h: Same.
9836         * include/imm.h: Same.
9837         * include/initguid.h: Same.
9838         * include/intshcut.h: Same.
9839         * include/ipexport.h: Same.
9840         * include/iphlpapi.h: Same.
9841         * include/ipifcons.h: Same.
9842         * include/iprtrmib.h: Same.
9843         * include/iptypes.h: Same.
9844         * include/isguids.h: Same.
9845         * include/largeint.h: Same.
9846         * include/lm.h: Same.
9847         * include/lmaccess.h: Same.
9848         * include/lmalert.h: Same.
9849         * include/lmapibuf.h: Same.
9850         * include/lmat.h: Same.
9851         * include/lmaudit.h: Same.
9852         * include/lmbrowsr.h: Same.
9853         * include/lmchdev.h: Same.
9854         * include/lmconfig.h: Same.
9855         * include/lmcons.h: Same.
9856         * include/lmerr.h: Same.
9857         * include/lmerrlog.h: Same.
9858         * include/lmmsg.h: Same.
9859         * include/lmremutl.h: Same.
9860         * include/lmrepl.h: Same.
9861         * include/lmserver.h: Same.
9862         * include/lmshare.h: Same.
9863         * include/lmsname.h: Same.
9864         * include/lmstats.h: Same.
9865         * include/lmsvc.h: Same.
9866         * include/lmuse.h: Same.
9867         * include/lmuseflg.h: Same.
9868         * include/lmwksta.h: Same.
9869         * include/lzexpand.h: Same.
9870         * include/mapi.h: Same.
9871         * include/mciavi.h: Same.
9872         * include/mcx.h: Same.
9873         * include/mmsystem.h: Same.
9874         * include/mswsock.h: Same.
9875         * include/nb30.h: Same.
9876         * include/nddeapi.h: Same.
9877         * include/nspapi.h: Same.
9878         * include/ntdef.h: Same.
9879         * include/ntsecapi.h: Same.
9880         * include/ntsecpkg.h: Same.
9881         * include/oaidl.h: Same.
9882         * include/objbase.h: Same.
9883         * include/objfwd.h: Same.
9884         * include/objidl.h: Same.
9885         * include/odbcinst.h: Same.
9886         * include/ole.h: Same.
9887         * include/ole2.h: Same.
9888         * include/ole2ver.h: Same.
9889         * include/oleauto.h: Same.
9890         * include/olectl.h: Same.
9891         * include/olectlid.h: Same.
9892         * include/oledlg.h: Same.
9893         * include/oleidl.h: Same.
9894         * include/pbt.h: Same.
9895         * include/prsht.h: Same.
9896         * include/psapi.h: Same.
9897         * include/rapi.h: Same.
9898         * include/ras.h: Same.
9899         * include/raserror.h: Same.
9900         * include/rassapi.h: Same.
9901         * include/regstr.h: Same.
9902         * include/richedit.h: Same.
9903         * include/richole.h: Same.
9904         * include/rpc.h: Same.
9905         * include/rpcdce.h: Same.
9906         * include/rpcdce2.h: Same.
9907         * include/rpcdcep.h: Same.
9908         * include/rpcndr.h: Same.
9909         * include/rpcnsi.h: Same.
9910         * include/rpcnsip.h: Same.
9911         * include/rpcnterr.h: Same.
9912         * include/rpcproxy.h: Same.
9913         * include/schannel.h: Same.
9914         * include/schnlsp.h: Same.
9915         * include/scrnsave.h: Same.
9916         * include/security.h: Same.
9917         * include/setupapi.h: Same.
9918         * include/shellapi.h: Same.
9919         * include/shlguid.h: Same.
9920         * include/shlobj.h: Same.
9921         * include/sql.h: Same.
9922         * include/sqlext.h: Same.
9923         * include/sqltypes.h: Same.
9924         * include/sqlucode.h: Same.
9925         * include/sspi.h: Same.
9926         * include/subauth.h: Same.
9927         * include/tlhelp32.h: Same.
9928         * include/unknwn.h: Same.
9929         * include/userenv.h: Same.
9930         * include/w32api.h: Same.
9931         * include/winbase.h: Same.
9932         * include/wincon.h: Same.
9933         * include/wincrypt.h: Same.
9934         * include/windef.h: Same.
9935         * include/windows.h: Same.
9936         * include/windowsx.h: Same.
9937         * include/winerror.h: Same
9938         * include/wingdi.h: Same.
9939         * include/wininet.h: Same.
9940         * include/winioctl.h: Same.
9941         * include/winnetwk.h: Same.
9942         * include/winnls.h: Same.
9943         * include/winnt.h: Same.
9944         * include/winperf.h: Same.
9945         * include/winreg.h: Same.
9946         * include/winresrc.h: Same.
9947         * include/winsock.h: Same.
9948         * include/winsock2.h: Same.
9949         * include/winspool.h: Same.
9950         * include/winsvc.h: Same.
9951         * include/winuser.h: Same.
9952         * include/winver.h: Same.
9953         * include/ws2tcpip.h: Same.
9954         * include/wsnetbs.h: Same.
9955         * include/wtypes.h: Same.
9956         * include/zmouse.h: Same.
9957         * include/mapi.h: Change header guard name to _MAPI_H  for
9958         consistency.
9959
9960 2002-03-08  Danny Smith  <dannysmith@users.sourceforge.net>
9961
9962         * include/accctrl.h (_ACCCTRL_H): Correct typo.
9963         Remove unnecessary inclusion of <wtypes.h>.
9964         * ChangeLog: Fix omission of name in recent entries.
9965
9966 2002-03-08  Antony Blakey  <antony.blakey@ihug.com.au>
9967
9968         * include/initguid.h (DEFINE_GUID): Add GUID_EXT to define.
9969
9970 2002-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
9971
9972         * include/mswsock.h: Group winsock2 dependants
9973         together and protect with #ifdef _WINSOCK2_H.
9974         * lib/test.c: Only test ws2tcpip.h if winsock2.h
9975         has been included.
9976
9977 2002-03-05  Danny Smith  <dannysmith@users.sourceforge.net>
9978
9979         * include/mswsock.h (TP_*): Add new defines.
9980         (TRANSMIT_PACKETS_ELEMENT): Define new structure.
9981         (WSAMSG): Likewise.
9982         (WSACMSGHDR): Likewise.
9983         (DisconnectEx): Add new prototype.
9984         (WSARecvMsg): Likewise.
9985         (WSA_CMSG_*) Add empty macros, guarded by #if 0.
9986
9987 2002-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
9988
9989         * ChangeLog: Fix typo in last entry.
9990         * include/winsock2.h (IPPROTO_*): Add IPv6 defines.
9991         * include/ws2tcpip.h: (IP_*): Add new defines.
9992         (INET_ADDRSTRLEN, INET6_ADDRSTRLEN): Add defines.
9993         (NI_*): Add getnameinfo constants and bitmasks.
9994         (AI_*): Add getaddrinfo flags.
9995         (EAI_*): Add getaddrinfo error codes.
9996         (ip_mreq_source): Add new structure.
9997         (ip_msfilter): Add new structure.
9998         (IP_MSFILTER_SIZE): Add new macro.
9999         (in_pktinfo): Add new structure.
10000         Add preliminary IPv6 support.
10001         (in6_addr): Add new structure and some defines.
10002         (sockaddr_in6): Add new structure.
10003         (in6addr_any, in6addr_loopback): Declare extern structures.
10004         (IN6ADDR_ANY_INIT,IN6ADDR_LOOPBACK_INIT): Add
10005         initialization macros for above.
10006         (IN6_ARE_ADDR_EQUAL): Define macro.
10007         (IN6_IS_ADDR_*): Define address testing macros.
10008         (socklen_t) Add new typedef.
10009         (ipv6_mreq): Add new structure.
10010         (in6_pktinfo): Same.
10011         (addrinfo): Same.
10012         (freeaddrinfo):Add new prototype.
10013         (getaddrinfo): Same.
10014         (gai_strerror[AW]): Same.
10015         (getnameinfo): Same.
10016         (sockaddr_in6_old): Add structure.
10017         (sockaddr_gen): Add union definition.
10018         (INTERFACE_INFO): Use sockaddr_gen as members.
10019         (INTERFACE_INFO_OLD): Add comment on workaround for problems
10020         with INTERFACE_INFO on NT4 prior to sp4.
10021
10022 2002-02-28  Danny Smith  <dannysmith@users.sourceforge.net>
10023
10024         * include/windows.h: Remove test for __W32API_MAJOR_VERSION
10025         when selecting winsock interface.
10026         * include/winsock2.h (SOCKET_ADDRESS_LIST): Add structure
10027         and typedefs. Thanks to: 'Lorenzo' <conte0@infinito.it>.
10028         Expand FIXME comment.
10029         (WSACOMPLETIONTYPE): Add enum.
10030         (WSACOMPLETION): Add structure and typedefs.
10031         (WSANSPIoctl): Add function prototpe and callback typedef.
10032         (SIO_NSP_NOTIFY_CHANGE): Add define.
10033         (sockaddr_storage): Add structure and typedefs.
10034
10035 2002-02-16  Andriy Palamarchuk  <apa3a@yahoo.com>
10036
10037         * include/winuser.h (OIC_*): Add resource constants.
10038
10039 2002-02-14 Mattia Barbon  <mbarbon@users.sourceforge.net>
10040
10041         * include/ntsecpkg.h: New file.
10042         * include/schannel.h: New file.
10043         * include/schnlsp.h: New file.
10044         * include/security.h: New file.
10045         * include/sspi.h: New file.
10046         * include/ntsecapi.h (KERB_WRAP_NO_ENCRYPT,
10047         MICROSOFT_KERBEROS_NAME_[AW]): Add missing constants
10048         * include/wincrypt.h (CALG_*, X509_ASN_ENCODING.
10049         PKCS_7_ASN_ENCODING, CERT_*, USAGE_MATCH_TYPE_AND,
10050         USAGE_MATCH_TYPE_OR, szOID_*): Add missing constants
10051         (struct _CRYPTOAPI_BLOB): Add structure and typedefs.
10052         (SSL_EXTRA_CERT_CHAIN_POLICY_PARA,HTTPSPolicyCallbackData,
10053         CERT_CHAIN_POLICY_PARA,CERT_CHAIN_POLICY_STATUS,
10054         CRYPT_ALGORITHM_IDENTIFIER, CRYPT_BIT_BLOB,
10055         CERT_PUBLIC_KEY_INFO, CERT_EXTENSION, CERT_INFO, CERT_CONTEXT,
10056         CTL_USAGE, CERT_ENHKEY_USAGE, CERT_USAGE_MATCH,
10057         CERT_CHAIN_PARA, CERT_CHAIN_FIND_BY_ISSUER_PARA,
10058         CERT_TRUST_STATUS, CRL_ENTRY, CRL_INFO, CRL_CONTEXT,
10059         CERT_REVOCATION_CRL_INFO, CERT_REVOCATION_INFO,
10060         CERT_CHAIN_ELEMENT, CRYPT_ATTRIBUTE, CTL_ENTRY, CTL_INFO,
10061         CTL_CONTEXT, CERT_TRUST_LIST_INFO, CERT_SIMPLE_CHAIN,
10062         CERT_CHAIN_CONTEXT): Add missing structures.
10063         (CertCloseStore, CertGetCertificateChain,
10064         CertVerifyCertificateChainPolicy, CertFreeCertificateChain,
10065         CertNameToStr[AW], CertOpenSystemStore[AW], CertOpenStore,
10066         CertFindCertificateInStore, CertFreeCertificateContext,
10067         CertGetIssuerCertificateFromStore,
10068         CertFindChainInStore): Add missing functions.
10069         (CertNameToStr, CertOpenSystemStore, CERT_FIND_SUBJECT_STR,
10070         CERT_FIND_ISSUER_STR): Add Unicode mappings.
10071         * lib/crypt32.def: New file.
10072         * lib/secur32.def: Add mising stubs.
10073         * lib/test.c: Include new headers.
10074
10075 2002-02-14  Danny Smith  <dannysmith@users.sourceforge.net>
10076
10077         * include/windef.h (PROC,FARPROC,NEARPROC): Remove void
10078         parameter.
10079
10080 2002-01-30  Danny Smith  <dannysmith@users.sourceforge.net>
10081
10082         * lib/test.c: Include mapi.h.
10083         * include/commctrl.h (TBSTYLE_*): Add missing defines.
10084         Thanks to: "Ron"  <ron@debian.org>
10085
10086 2002-01-30  John Fattaruso  <fattaruso@ieee.org>
10087
10088         * include/mapi.h: New file.
10089         * lib/mapi.def: Add missing function stubs.
10090
10091 2002-01-28  Danny Smith  <dannysmith@users.sourceforge.net>
10092
10093         * include/winuser.h (GetWindowLongPtr[AW],
10094         SetWindowLongPtr[AW]): Add prototypes for _WIN64.
10095
10096 2002-01-28  Mattia Barbon  <mbarbon@users.sourceforge.net>
10097
10098         * include/winuser.h (GWLP_*,DWLP_*): Add missing constants.
10099         (GetWindowLongPtr[AW], SetWindowLongPtr[AW]): Map them to
10100         {Get Set}WindowLong[AW], as in Win32 they are equivalent.
10101         (GetWindowLongPtr, SetWindowLongPtr): Add Unicode mappings.
10102
10103 2002-01-28  Danny Smith  <dannysmith@users.sourceforge.net>
10104
10105         * lib/test.c: Include wsnetbs.h.
10106
10107 2002-01-28  Kai Henningsen  <kai-henningsen@users.sourceforge.net>
10108
10109         * include/wsnetbs.h: New file.
10110
10111 2002-01-25  Earnie Boyd  <earnie@users.sf.net>
10112
10113         * include/winnt.h: Remove merge conflict.
10114
10115 2002-01-25  Danny Smith  <dannysmith@users.sourceforge.net>
10116
10117         * include/winnt.h (_TCHAR): Add typedefs.
10118
10119 2002-01-25  Tim Hughes  <tjh@delcam.com>
10120
10121         * include/wininet.h (SECURITY_FLAG_IGNORE_*): Add missing
10122         defines.
10123
10124 2002-01-25  Andriy Palamarchuk  <apa3a@yahoo.com>
10125
10126         * include/winsuser.h (ATF_AVAILABLE, SERKF_ACTIVE):
10127         Add defines.
10128         (LPACCESSTIMEOUT): Add typedef.
10129
10130 2002-01-24  Phillip Susi  <psusi@cfl.rr.com>
10131
10132         * include/commctrl.h: Add missing HDM_*,HDN_*,LVSICF_* defines.
10133
10134 2002-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
10135
10136         * include/commctrl.h (HDITEM[AW]): Rename _HD_ITEM[AW] to
10137         _HDITEM[AW], with parallel changes to typedefs. Use defines for
10138         backward compatability with old names. Update UNICODE mappings.
10139         (HDLAYOUT): Remove struct _HD_LAYOUT_XP.  Use new typedefs
10140         for struct _HD_LAYOUT and add defines for backward
10141         compatability with old names.
10142         (NMLISTVIEW): Rename _NM_LISTVIEW to tagNMLISTVIEW, with
10143         parallel chages to typedefs. Add defines for backward
10144         compatability with old names.
10145         (TCHITTESTINFO, IMAGELISTDRAWPARAMS): Fix _WIN32_IE guard.
10146
10147 2002-01-21  Robert Collins  <rbtcollins@hotmail.com>
10148
10149         * include/winnt.h: Add missing MEM_ defines, and convert existing to
10150         hex for readability.
10151
10152 2002-01-17  Marcus Geelnard  <marcus.geelnard@home.se>
10153
10154         * include/winsuser.h (tagKBDLLHOOKSTRUCT): Define struct
10155         and typedefs.
10156         (SPI_SETSCREENSAVERRUNNING): Add define.
10157         (LLKHF_ALTDOWN): Add define.
10158         * include/wingdi.h (PFD_GENERIC_ACCELERATED,
10159         PFD_DEPTH_DONTCARE): Add defines.
10160
10161 2002-01-17  Danny Smith  <dannysmith@users.sourceforge.net>
10162
10163         * include/objbase.h (CoGetObject): Add prototype.
10164
10165 2002-01-14  Timothy J. Wood  <tjw@omnigroup.com>
10166
10167         * include/winuser.h (ENUM_CURRENT_SETTINGS,
10168         ENUM_REGISTRY_SETTINGS): Add defines.
10169
10170 2002-01-14  Danny Smith  <dannysmith@users.sourceforge.net>
10171
10172         * include/winnt.h (FILE_ATTRIBUTE_ENCRYPTED): Correct constant.
10173         (FILE_ATTRIBUTE_DEVICE): Add define.
10174
10175 2002-01-14  Corinna Vinschen  <vinschen@redhat.com>
10176
10177         * include/winnt.h: Add INVALID_FILE_ATTRIBUTES.
10178
10179 2002-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
10180
10181         * ChangeLog: correct date in last entry.
10182
10183 2002-01-11  Timothy J. Wood  <tjw@omnigroup.com>
10184
10185         * include/winuser.h (MONITORENUMPROC): Add typedef.
10186         (EnumDisplayMonitors): Add prototype.
10187         * lib/user32.def (EnumDisplayMonitors): Add stub.
10188
10189 2002-01-11 Ralf Habacker  <Ralf.Habacker@freenet.de>
10190
10191         * include/ntsecapi.h:  Fixed missing void parameter type in some
10192         prototypes.
10193         * include/objbase.h: Ditto.
10194         * include/rapi.h: Ditto.
10195         * include/rpc.h: Ditto.
10196         * include/rpcdce.h: Ditto.
10197         * include/rpcdcep.h: Ditto.
10198         * include/rpcndr.h: Ditto.
10199         * include/rpcnsip.h: Ditto.
10200         * include/rpcproxy.h: Ditto.
10201         * include/windef.h: Ditto.
10202
10203 2002-01-07  Danny Smith  <dannysmith@users.sourceforge.net>
10204
10205         * lib/vfw32.def (LIBRARY): Change to MSVFW32.DLL.
10206
10207 2002-01-04  TAMURA Kent  <tkent@users.sourceforge.net>
10208
10209         * include/wingdi.h (BI_JPEG, BI_PNG, GGO_BEZIER,GGO_UNHINTED,
10210          LAYOUT_RTL, LAYOUT_BITMAPORIENTATIONPRESERVED): Add defines.
10211         * include/winuser.h (HWND_MESSAGE, WS_EX_COMPOSITED,
10212         WS_EX_LAYERED, WS_EX_LAYOUTRTL, WS_EX_NOACTIVATE,
10213         WS_EX_NOINHERITLAYOUT): Add defines.
10214         * include/winnt.h (PF_RDTSC_INSTRUCTION_AVAILABLE,
10215         PF_PAE_ENABLED, MEM_PHYSICAL, MEM_RESET, MEM_TOP_DOWN,
10216         MEM_WRITE_WATCH): Add defines.
10217
10218
10219 2002-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
10220
10221         * include/winbase.h (InitializeCriticalSectionAndSpinCount):
10222         Add prototype.
10223         (SetCriticalSectionSpinCount): Likewise.
10224
10225 2001-12-30  Guido Serassio  <serassio@libero.it>
10226
10227         * include/winsvc.h: Add EnumServiceStatusEx(),
10228         QueryServiceStatusEx()
10229         & RegisterServiceCtrlHandlerEx()
10230
10231 2001-12-21  Robert Collins  <rbtcollins@hotmail.com>
10232
10233         * include/wingdi.h: Add GetRandomRgn and SYSRGN.
10234
10235 2001-12-20  Christopher Faylor  <cgf@redhat.com>
10236
10237         * lib/Makefile.in: Revert inst_installdir definitions to working
10238         versions.
10239
10240 2001-12-17  Guido Serassio  <serassio@libero.it>
10241
10242         * include/winsvc.h: Add ChangeServiceConfig2() &
10243         QueryServiceConfig2() definition
10244
10245 2001-12-17  Robert Collins  <rbtcollins@hotmail.com>
10246
10247         * include/commctrl.h: New typedefs for HDLAYOUT and LPHDLAYOUT based
10248         on MSDN documentation for XP.
10249
10250 2001-12-15  Andrew Begel  <abegel@eecs.berkeley.edu>
10251
10252         * include/winbase.h (CreateHardLink): Correct typo in UNICODE
10253         mappings.
10254
10255 2001-12-11  Phillip Susi  <psusi@cfl.rr.com>
10256
10257         * include/commctrl.h (ACS_*): Add new defines.
10258         (PGS_*): Ditto.
10259         (CBES_*): Ditto.
10260         (TBSTYLE_*): Ditto.
10261         (TB_*): Ditto.
10262         (TTS_*): Ditto.
10263         (UDS_HOTTRACK): Add define.
10264         (SBT_TOOLTIPS): Ditto.
10265         (TBS_*): Add new defines.
10266         (HDS_*): Ditto.
10267         (LVS_EX_*) Ditto.
10268         (LVKF_*): Ditto.
10269         (TCM_GETEXTENDEDSTYLE): Add define.
10270         (TVS_NOHSCROLL): Ditto.
10271         (TVIF_INTEGRAL): Ditto.
10272         (DTS_SHORTDATECENTURYFORMAT): Ditto.
10273         (TCS_*): Add new defines.
10274         (CBEM_*): Add defines.
10275         (tagNMITEMACTIVATE): Add structure definition and typedefs.
10276         (tagTVITEMEX[AW]: Ditto.
10277         (tagTVINSERTSTRUCT[AW]: Add union member.
10278         * include/winbase.h (VirtualAllocEx): Add prototype.
10279         * include/winuser.h (SS_*): Add new defines.
10280
10281 2001-12-07  Earnie Boyd  <earnie@users.sf.net>
10282
10283         * Makefile.in: Increment VERSION.
10284         * include/w32api.h: Ditto.
10285
10286 2001-12-07  Earnie Boyd  <earnie@users.sf.net>
10287
10288         * Makefile.in: Increment VERSION.
10289         * include/w32api.h: Ditto.
10290
10291 2001-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
10292
10293         * include/setupi.h (SetupDiCreateDeviceInterfaceRegKey[AW],
10294         SetupDiCreateDevRegKey[AW],SetupDiDeleteDeviceInterfaceRegKey,
10295         SetupDiDeleteDevRegKey,SetupDiOpenClassRegKey,
10296         SetupDiOpenClassRegKeyEx[AW],SetupDiOpenDeviceInterfaceRegKey,
10297         SetupDiOpenDevRegKey): Correct function names.
10298
10299 2001-12-04  Earnie Boyd  <earnie@users.sf.net>
10300
10301         * include/winuser.h (IDC_STATIC): Don't define.
10302
10303 2001-12-04  Danny Smith  <dannysmith@users.sourceforge.net>
10304
10305         Cleanup merge between SourceForge and winsup CVS.
10306         * include/winbase.h (OSVERSIONINFO[AW], OSVERSIONINFOEX[AW]: Remove
10307         definitions.
10308         * include/winnt.h (VER_NT*): Remove duplicate defines.
10309         (VER_SUITE*): Group with VER_PLATFORM*, VER_NT* defines.
10310
10311 2001-12-03  Earnie Boyd  <earnie@users.sf.net>
10312
10313         * include/accctrl.h: Change \r\n to \n.
10314
10315 2001-11-30  Danny Smith  <dannysmith@users.sourceforge.net>
10316
10317         * include/ipexport.h (IP_UNIDIRECTIONAL_ADAPTER_ADDRESS):
10318         Add structure definition.
10319         * include/iptypes.h (IP_PER_ADAPTER_INFO): Ditto.
10320         * include/iphlpapi.h (AddIPAddress,CreateProxyArpEntry,
10321         DeleteIPAddress,DeleteProxyArpEntry,EnableRouter,
10322         FlushIpNetTable,GetAdapterIndex,GetPerAdapterInfo,
10323         GetUniDirectionalAdapterInfo,SendARP,SetAdapterIpAddress,
10324         UnenableRouter) Declare functions.
10325         * lib/iphlpapi.def: Add function names to import lib.
10326
10327 2001-11-24  Danny Smith  <dannysmith@users.sourceforge.net>
10328
10329         * include/winnt.h (PACCESS_MASK): Add typedef.
10330         * include/aclapi.h: New file.
10331         * include/acctrl.h: New file.
10332         * lib/advapi32.def: Add missing symbols.
10333         * lib/test.c: Add #include <aclapi.h>.
10334
10335 2001-11-23  Danny Smith  <dannysmith@users.sourceforge.net>
10336
10337         * include/winbase.h (OSVERSIONINFO[AW],VER_PLATFORM_WIN32s,
10338         VER_PLATFORM_WIN32_WINDOWS,VER_PLATFORM_WIN32_NT): Move from
10339         here ...
10340         * include/winnt.h: ... to here.
10341         * include/winbase.h (VerifyVersionInfo[AW]): Add declaration.
10342         * include/winnt.h (OSVERSIONINFOEX[AW]): Add structure definitions
10343         and typedefs.
10344         (VER_NT_WORKSTATION,VER_NT_DOMAIN_CONTROLLER,VER_NT_SERVER):
10345         Add defines.
10346
10347 2001-11-19  Pierre Muller  <muller@ics.u-strasbg.fr>
10348
10349         * w32api/include/winnt.h: prepare SSE register support.
10350         (CONTEXT_EXTENDED_REGISTERS): Add new define.
10351         (MAXIMUM_SUPPORTED_EXTENSION): New define.
10352         (struct CONTEXT): ExtendedRegisters field added.
10353
10354 2001-11-16  Danny Smith  <dannysmith@users.sourceforge.net>
10355
10356         * include/winuser.h (tagALTTABINFO, tagCOMBOBOXINFO,
10357         tagCURSORINFO, tagMENUBARINFO, tagMENUINFO, tagMONITORINFO
10358         tagSCROLLBARINFO, tagTITLEBARINFO. tagWINDOWINFO,
10359         tagLASTINPUTINFO ): Define new structures.
10360         (EndMenu, GetAltTabInfo[AW],GetComboBoxInfo,GetCursorInfo,
10361         GetLastInputInfo, GetListBoxInfo, GetMenuBarInfo,
10362         GetMonitorInfo[AW], GetScrollBarInfo, GetTitleBarInfo,
10363         GetWindowInfo, GetWindowModuleFileName[AW],GetMenuInfo
10364         SetMenuInfo): Add new prototypes.
10365         * lib/user32.def: Add import stubs for above functions.
10366
10367         * include/winuser.h (IDC_STATIC): Protect against prior
10368         definition.
10369
10370 2001-11-12  Corinna Vinschen  <corinna@vinschen.de>
10371
10372         * include/winbase.h (OSVERSIONINFOEX): Add definition.
10373         * include/winnt.h: Add VER_NT_* and VER_SUITE_* defines.
10374
10375 2001-11-10  Robert Collins  <rbtcollins@hotmail.com>
10376
10377         * include/winnt.h: Add Danny Smith's text comment about gcc compiler
10378         warnings with _AUTHORITY #defines.
10379
10380 2001-11-09  Robert Collins  <rbtcollins@hotmail.com>
10381
10382         * include/winnt.h (GetCurrentFiber): Create a prototype before the
10383         implementation.
10384         (GetFiberData): Ditto.
10385
10386 2001-11-09  Robert Collins  <rbtcollins@hotmail.com>
10387
10388         * include/winnt.h: Backout last change.
10389
10390 2001-11-08  Robert Collins  <rbtcollins@hotmail.com>
10391
10392         * include/winnt.h: Define *_SID_AUTHORITY appropriately,
10393         GetCurrentFiber: Create a prototype before the implementation.
10394         GetFiberData: Ditto.
10395
10396 2001-11-06  Danny Smith  <dannysmith@users.sourceforge.net>
10397
10398         * include/winuser.h (IDC_STATIC): Add define.
10399         Thanks to: Benoit Laniel.
10400
10401 2001-11-05  Danny Smith  <dannysmith@users.sourceforge.net>
10402
10403         * include/commdlg.h: Include <unknwn.h> rather than local
10404         definition of LPUKNOWN.
10405         * include/rpcproxy.h: Don't include if ndef CINTERFACE.
10406         Emit warning.
10407
10408 2001-11-05  Mattia Barbon  <mbarbon@dsi.unive.it>
10409
10410         * include/windef.h (DECLSPEC_NORTEURN): Add an empty version
10411         for Watcom.
10412         (DECLARE_STDCALL_P): Use it to add __stdcall decoration for
10413         functions of the form 'type * function(...)' in a way compatible
10414         with both Watcom and GCC.
10415         * include/rpcdcep.h (I_RpcAllocate): Use DECLARE_STDCALL_P.
10416         * include/rpcproxy.h (CInterfaceProxyVtbl): Do not declare
10417         zero-sized arrays for Watcom. Mark as __extension for __GNUC__.
10418         * include/windows.h: Watcom can use anonymous structs/unions.
10419         * include/winnt.h: Watcom can use 64 bit ints.
10420         (GetCurrentFiber): Add another inline definition using
10421         Watcom inline assembly syntax.
10422         (GetFiberData): Likewise.
10423         * include/winsock.h (inet_ntoa): Use DECLARE_STDCALL_P.
10424         (gethostbyname): Likewise.
10425         (gethostbyaddr}: Likewise.
10426         (getservbyport}: Likewise.
10427         (getservbyname}: Likewise.
10428         (getprotobynumber}: Likewise.
10429         (getprotobyname}: Likewise.
10430         * include/winsock2.h (inet_ntoa): Use DECLARE_STDCALL_P.
10431         (gethostbyname}: Likewise.
10432         (gethostbyaddr}: Likewise.
10433         (getservbyport}: Likewise.
10434         (getservbyname}: Likewise.
10435         (getprotobynumber}: Likewise.
10436         (getprotobyname}: Likewise.
10437         * lib/diinut.c: Correction for Watcom.
10438         * lib/kernel32.c (GetCurrentFiber): Add another definition
10439         using Watcom inline assembly syntax.
10440         (GetFiberData): Likewise.
10441         * lib/scrnsave.c (WinMain): Add break after default:
10442         clause.
10443
10444 2001-11-04  "stefan"  <stefan@lkcc.org>
10445
10446         * include/winnt.h (GetCurrentFiber): Add prototype.
10447         (GetFiberData): Likewise.
10448
10449 2001-11-04  Christopher Faylor  <cgf@redhat.com>
10450
10451         * lib/Makefile.in: Add .NOTPARALLEL target since dlltool cannot run in
10452         parallel invocations.
10453
10454 2001-11-03  Christopher Faylor  <cgf@redhat.com>
10455
10456         * lib/scrnsave.c (WinMain): Trivial change to avoid a compiler warning.
10457
10458 2001-11-01  Danny Smith  <dannysmith@users.sourceforge.net>
10459
10460         * include/basetyps.h (DECLARE_INTERFACE): Don't add
10461         __attribute__((com_interface)) for __GNUC__ >= 3.
10462
10463 2001-11-01  Danny Smith  <dannysmith@users.sourceforge.net>
10464
10465         * include/commdlg.h (PRINTPAGERANGE): Add structure
10466         definition.
10467         (PRINTDLGEX[AW]): Likewise.
10468         (PrintDlgEx[AW]): Add function declaration.
10469         * lib/comdlg32.def (PrintDlgEx[AW]): Add function stubs.
10470         * ChangeLog: Fix typo in last entry.
10471
10472 2001-11-01  TAMURA Kent  <tkent@users.sourceforge.net>
10473
10474         * include/objbase.h (CoGetClassObject): Change third parameter
10475         to COSERVERINFO*.
10476
10477 2001-10-30  Danny Smith  <dannysmith@users.sourceforge.net>
10478
10479         * include/winuser.h (MOUSEEVENTF_WHEEL): Define.
10480         Thanks to: Kim Saunders.
10481         * include/oleauto.h: Define VARIANT* flags for VariantChangeType.
10482         Thanks to: Pat Thoyts.
10483         * include/winnt.h: Change C++ style comment to C style.
10484         * include/shlobj.h: Ditto.
10485         * include/objbase.h (enum tagCOINIT): Remove comma at end of
10486         list.
10487         * include/oledlg.h (enum tagOLEUIPASTEFLAG): Ditto.
10488         * include/oleidl.h (enum tagDROPEFFECT): Mark as __extension__
10489         (enum not limited to range of int).
10490         * include/oaidl.h (struct tagVARIANT): Mark as __extension__
10491         (struct with no named members), ifndef NONAMELESSUNION.
10492
10493 2001-10-30  Danny Smith  <dannysmith@users.sourceforge.net>
10494
10495         * include/winuser.h (CREATESTRUCT): UNICODE it.
10496         (CBT_CREATEWND): Likewise.
10497
10498 2001-10-20  Corinna Vinschen  <corinna@vinschen.de>
10499
10500         * include/winnetwk.h (WNetGetResourceInformationA): Add declaration.
10501         (WNetGetResourceInformationW): Ditto.
10502         (WNetGetResourceInformation): Add define.
10503
10504 2001-10-12  Pedro A Aranda  <paaguti@hotmail.com>
10505
10506         * include/winuser.h (POINTSTOPOINT): Use explicit casts
10507         before extracting words.
10508
10509 2001-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
10510
10511         * include/winnt.h: Add PF_* defines.
10512         Thanks to: "Wizord"  <wizord@argoslabs.com>
10513
10514 2001-09-18  Danny Smith  <dannysmith@users.sourceforge.net>
10515
10516         * include/winnt.h (_[U]LARGE_INTEGER): Mark nameless structure
10517         field as _ANONYMOUS_STRUCT.
10518         * include/setupapi.h (SP_DEVINSTALL_PARAMS): Add missing typedef
10519         for UNICODE.
10520         * include/ipexport.h (icmp_echo_reply): Remove extra ';'.
10521         * lib/makefile.in: Add -pedantic switch to TEST_OPTIONS for header
10522         test.
10523
10524 2001-09-17  Mattia Barbon  <mbarbon@dsi.unive.it>
10525
10526         * include/commctrl.h: Add some ListView constants.
10527
10528 2001-09-17  Earnie Boyd  <earnie@sf.net>
10529
10530         * lib/Makefile.in (inst_includedir): Add FIXME and remove the usr/
10531         portion of the directory from the install.
10532         (inst_libdir): Ditto.
10533         * Makefile.in (VERSION): Increment.
10534         * include/w32api.h: Increment version.
10535
10536 2001-09-13  Earnie Boyd  <earnie@SF.net>
10537
10538         * lib/Makefile.in (inst_includedir): Change to always use w32api
10539         subdirectory for target == cygwin.
10540         (inst_libdir): Ditto.
10541
10542 2001-09-13  Earnie Boyd  <earnie@SF.net>
10543
10544         * lib/Makefile.in (config_prefix): New variable.
10545         (inst_includedir): Manipulate special value only if target == cygwin
10546         and build == target and prefix != config_prefix.
10547         (inst_libdir): Ditto.
10548
10549 2001-09-12  Earnie Boyd  <earnie@SF.net>
10550
10551         * Makefile.in (TARFLAGS): New variable.
10552         (TARFILEEXT): Ditto.
10553
10554 2001-09-12  Earnie Boyd  <earnie@SF.net>
10555
10556         * Makefile.in: Increment version.
10557         * include/w32api.h: Ditto.
10558         * lib/Makefile.in: Add usr/ to install directory special for cygwin.
10559
10560 2001-09-11  Danny Smith  <dannysmith@users.sourceforge.net>
10561
10562         * include/winnt.h (_[U]LARGE_INTEGER): Protect nameless struct with
10563         !defined(NONAMELESSUNION), rather than defined(_ANONYMOUS_STRUCT).
10564         (_REPARSE_DATA_BUFFER): Name union field DUMMYUNIONNAME.
10565
10566 2001-09-05  Danny Smith  <dannysmith@users.sourceforge.net>
10567
10568         * include/wininet.h (InternetAutodial): Add prototype.
10569         (InternetAutodialHangup): Ditto.
10570         (InternetDial): Ditto.
10571         (InternetGetConnectedState): Ditto.
10572         (InternetGoOnline): Ditto.
10573         (InternetHangUp): Ditto.
10574         (InternetSetDialState): Ditto.
10575         Add associated INTERNET_* auto dial flags.
10576         Guard typedefs and prototypes with #ifndef RC_INVOKED.
10577
10578 2001-09-04  Earnie Boyd  <earnie@SF.Net>
10579
10580         * lib/Makefile.in: Move the setting of variable libdir to after the
10581         setting of exec_prefix since the value of libdir is dependant on it.
10582
10583 2001-09-04  Christopher Faylor  <cgf@cygnus.com>
10584
10585         * include/winbase.h: Add missing closing parentheses to
10586         InterlockedExchangePointer declaration.
10587
10588 2001-09-01  Danny Smith  <dannysmith@users.sourceforge.net>
10589
10590         * include/shlobj.h (CFSTR_* ): Add new defines.
10591         Thanks to: "Ron" <ron@debian.org> .
10592         Unicode them.
10593
10594 2001-09-01  Christopher Faylor  <cgf@cygnus.com>
10595
10596         * include/winnt.h: Use defined(_ANONYMOUS_STRUCT) to determine if
10597         anonymous structs are available rather than just testing preprocessor
10598         variable directly.
10599
10600 2001-08-31  Corinna Vinschen  <corinna@vinschen.de>
10601
10602         * include/winnt.h: Change definition of `SYSTEM_LUID' to comply
10603         with new `LARGE_INTEGER' definition.
10604
10605 2001-08-30  Christopher Faylor  <cgf@cygnus.com>
10606
10607         * include/winsock2.h: Remove "extra token" after #endif.
10608
10609 2001-08-31  Earnie Boyd  <earnie@SF.Net>
10610
10611         * config.guess: Remove the \r from the end of line.
10612         * config.sub: Ditto.
10613
10614 2001-08-30  Danny Smith  <dannysmith@users.sourceforge.net>
10615
10616         * include/winnt.h: Allow anonymous struct in [U]LARGE_INTEGER
10617         if __cplusplus as well as if _ANONYMOUS_STRUCT.
10618
10619 2001-08-29  Earnie Boyd  <earnie@SF.Net>
10620
10621         * config.guess: Add the MSYS system.
10622         * config.sub: Ditto.
10623         * include/winsock.h: Add the __INSIDE_MSYS__ protections.
10624         * incldue/winsock2.h: Ditto.
10625
10626 2001-08-29  Eric Kohl  <ekohl@users.sourceforge.net>
10627
10628         * include/winnt.h: Allow anonymous (Xxx.LowPart) or
10629         non-anonymous (Xxx.u.LowPart) access to HighPart and
10630         LowPart of a LARGE_INTEGER or ULARGE_INTEGER.
10631
10632 2001-08-24  TAMURA Kent  <tkent@users.sourceforge.net>
10633
10634         * include/wingdi.h (HANGUL_CHARSET): Add define.
10635
10636 2001-08-21  Earnie Boyd  <earnie@SF.Net>
10637
10638         * include/setupapi.h: Formatting.
10639
10640 2001-08-21  Earnie Boyd  <earnie@SF.Net>
10641
10642         * include/shlobj.h: Remove \r from the line endings.
10643
10644 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
10645
10646         * include/setupapi.h : New file.
10647         * lib/setupapi.def:New file.
10648         * lib/test.c: Include setupapi.h.
10649
10650 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
10651         * include/winioctl.h (_DISK_PERFORMANCE): Correct typo.
10652
10653 2001-08-21  Mattia Barbon  <mbarbon@dsi.unive.it>
10654
10655         * include/richedit.h (ENLINK): Add structure definition.
10656         (EM_AUTOURLDETECT, EN_LINK, ENM_LINK): Add defines.
10657
10658 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
10659
10660         * include/shlobj.h (CMIC_*): Remove duplicate defines.
10661         (CMDSTR_*): Remove duplicates; UNICODE string constants.
10662         (GCS_*): Make UNICODE.
10663         (CSIDL_*): Add more defines.
10664         * include/winioctl.h (_MEDIA_TYPE): Add pointer typedef.
10665         (_DISK_GEOMETRY): Ditto.
10666         (_DISK_PERFORMANCE): Ditto.
10667         * include/winbase.h (HasOverlappedIoCompleted): Add macro.
10668
10669 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10670
10671         * include/winnt.h: Move CHAR, SHORT and LONG typedefs outside
10672         of block protected by #ifndef VOID.
10673         (This reverts 1998-12-01 Anders Norlander change.)
10674         * include/odbcinst.h: End file with newline.
10675         * include/raserror.h: Ditto.
10676
10677 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10678
10679         * include/winsock2.h (#include <wtypes.h): Don't.
10680         (_BLOB): Define instead, if not already done.
10681         (__BLOB_T_DEFINED: New define for guarding _BLOB.
10682         * include/wtypes.h (_BLOB): Guard against prior definition.
10683
10684 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10685
10686         * include/oaidl.h (tagVARIANT): Mark anonymous structs and unions
10687         as __extension__.
10688         (tagTYPEDESC): Ditto.
10689         (_wireBRECORD): Add structure definition.
10690         (_wireSAFEARR_BRECORD): Ditto.
10691         (_wireSAFEARR_HAVEIID): Ditto.
10692         (_wireSAFEARRAY_UNION.u): Add fields SAFEARR_BRECORD RecordStr,
10693         SAFEARR_HAVEIID HaveIidStr.
10694         (tagVariant): Add fields _VARIANT_BOOL bool,*pbool.
10695         (_wireVARIANT): Change field parray to type wirePSAFEARRAY,
10696         pparray to wirePSAFEARRAY*.
10697         (_wireVARIANT): Add field wireBRECORD brecVal.
10698         (wireVARIANT): Change typedef to struct _wireVariant*.
10699         (IRecordInfo): Add interface definition.
10700         (LPRECORDINFO): Add typedef for IRecordInfo*.
10701         (IID_IRecordInfo): Add forward decalaration.
10702
10703 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10704
10705         * include/lmcons.h: Guard CNLEN and UNCLEN against prior definition.
10706         * include/nddeapi.h: Likewise.
10707
10708 2001-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
10709
10710         * lib/test.c (Win32_Winsock): Replace with __USE_W32_SOCKETS.
10711         Add more includes of w32api headers.
10712
10713 2001-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
10714
10715         * include/winnt.h (GetCurrentFiber): Change __inline to __inline__.
10716         Swap asm code with that of GetFiberData.
10717         (GetFiberData): Ditto.
10718         * lib/kernel32.c: New file, containing library versions of
10719         GetCurrentFiber and GetFiberData.
10720         * lib/makefile.in: Add kernel32.o as static object to libkernal32.a.
10721
10722 2001-08-08  Danny Smith  <dannysmith@users.sourceforge.net>
10723
10724         * include/winuser.h (GET_WHEEL_DELTA_WPARAM): Add macro.
10725         Thanks to: Harold Hunt <Harold@compasstechnologies.com>.
10726
10727 2001-08-08  Danny Smith  <dannysmith@users.sourceforge.net>
10728
10729         * lib/oleaut32.def: Regenerate.
10730
10731 2001-08-04  Danny Smith  <dannysmith@users.sourceforge.net>
10732
10733         * include/wtypes.h (DECIMAL_SETZERO): Correct typo.
10734
10735 2001-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
10736
10737         Apply Dmitry Bely  <dbely@mail.ru> patch 437834 (with additions).
10738         * include/oleidl.h (ISupportErrorInfo, ICreateInfo): Move from here
10739         * include/oaidl.h: ... to here.
10740         * include/oaidl.h ICreateErrorInfo): Add interface definition.
10741         (IErrorInfo::GetGUID): Change arg to GUID.
10742         (LPSUPPORTERRORINFO): Add typedef.
10743         (IID_ISupportErrorInfo): Change forward decl. of type to IID.
10744
10745 2001-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
10746
10747         * include/winsock2.h (WSAGET* and WSAMAKE*): Remove duplicate
10748         defines.
10749
10750 2001-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
10751
10752         * include/commctrl.h (TreeView_SetIndent): Correct typo.
10753
10754 2001-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
10755
10756         * include/commctrl.h (TBSTYPE_FLAT): Remove define.
10757         Thanks to: Jason Craig  <jacraig@softhome.net>
10758
10759 2001-07-30  Mattia Barbon  <mbarbon@dsi.unive.it>
10760
10761         * include/commctrl.h (TBBUTTONINFO[AW]): Add struct definitions,
10762         and UNICODE mappings, if _WIN32_IE >= 0x400.
10763         (TBIF_* and TB_SETBUTTONINFO): Add defines, if _WIN32_IE >= 0x400.
10764         (CDIS_*,CDDS_*,CDRF_*) : Add defines.
10765         (tagNMCUSTOMDRAWINFO): Add struct definition and typedefs.
10766         (tagNMLVCUSTOMDRAW): Likewise.
10767         (tagNMTVCUSTOMDRAW): Likewise.
10768         (tagNMLVCACHEHINT): Likewise.
10769
10770 2001-07-06  Danny Smith  <dannysmith@users.sourceforge.net>
10771
10772         * include/basetsd.h (#include <_mingw.h>): Remove.
10773         (__int64): Define.
10774
10775 2001-06-28  Danny Smith  <dannysmith@users.sourceforge.net>
10776
10777         * include/wingdi.h (AC_SRC_OVER): Add define.
10778         (struct _BLENDFUNCTION): Add.
10779
10780 2001-06-28  Danny Smith  <dannysmith@users.sourceforge.net>
10781
10782         * include/shlobj.h:  Add BIF_* defines.
10783
10784 2001-06-27  Danny Smith  <dannysmith@users.sourceforge.net>
10785
10786         * include/winerror.h (E_PENDING): Add error code define.
10787
10788 2001-06-27  Danny Smith  <dannysmith@users.sourceforge.net>
10789
10790         * include/basetsd.h (#include <_mingw.h>): Add directive.
10791
10792 2001-06-25  Danny Smith  <dannysmith@users.sourceforge.net>
10793
10794         * include/winbase.h (InterlockedCompareExchange): Change args
10795         and return value from PVOID to LONG.
10796         (InterlockedExchange): Change first arg to LPLONG.
10797         (InterlockedCompareExchangePointer): New macro.
10798         (InterlockedExchangePointer): New macro.
10799
10800 2001-06-19  Danny Smith  <dannysmith@users.sourceforge.net>
10801
10802         * lib/kernel32.def: Add LanguageGroup and UILanguage symbols.
10803         Thanks to Kevin Chase <kevincha99@hotmail.com>.
10804
10805 2001-06-11  TAMURA Kent  <tkent@users.sourceforge.net>
10806
10807         * objidl.h (IMalloc::ReAlloc()): Correct declaration.
10808         (IMalloc::Free()): Ditto.
10809
10810 2001-06-11  Danny Smith  <dannysmith@users.sourceforge.net>
10811
10812         * include/shlobj.h (REGSTR_PATH_EXPLORER): Unicode it.
10813         (REGSTR_PATH_SPECIAL_FOLDERS): Ditto.
10814         * include/regstr.h (REGSTR_PATH_EXPLORER): Add #ifndef guard.
10815
10816 2001-06-11  Mattia Barbon  <mbarbon@dsi.unive.it>
10817
10818         * include/shlobj.h (struct _browseinfo): UNICODE it.
10819         (SHBrowseForFolder): Ditto.
10820         (SHGetPathFromIDList): Ditto.
10821
10822 2001-06-11  Earnie Boyd  <earnie@users.sourceforge.net>
10823
10824         * include/basetsd.h: RC_INVOKED protection and realignment.
10825         Thanks to: Colin Peters <colinpeters@users.sourceforge.net>
10826
10827 2001-06-06  Earnie Boyd  <earnie@users.sourceforge.net>
10828
10829         * Makefile.in (bindist): Reassign value of exec_prefix on make command
10830         line.
10831
10832 2001-05-22  Christopher Faylor  <cgf@cygnus.com>
10833
10834         * lib/mapi32.def: Add MAPISendMail.
10835
10836 2001-05-22  Earnie Boyd  <earnie@users.sourceforge.net>
10837
10838         * include/w32api.h: Update version.
10839         * Makefile.in: Ditto.
10840
10841 2001-05-17  Corinna Vinschen  <corinna@vinschen.de>
10842
10843         * include/winnt.h: Define SE_GROUP_LOGON_ID as unsigned to avoid
10844         compiler warnings.
10845
10846 2001-05-17  Corinna Vinschen  <corinna@vinschen.de>
10847
10848         * include/ntdef.h: Protect definition of OBJECT_ATTRIBUTES against
10849         previous definition in include/ntsecapi.h.
10850         * include/ntsecapi.h: Vice versa.
10851
10852 2001-05-16  Corinna Vinschen  <corinna@vinschen.de>
10853
10854         * include/winnt.h: Add defines for group attributes.
10855         Add define for SYSTEM_LUID.
10856         Add missing types `PTOKEN_DEFAULT_DACL', `PTOKEN_OWNER' and
10857         `PTOKEN_PRIMARY_GROUP'.
10858
10859 2001-04-24  Christopher Faylor  <cgf@cygnus.com>
10860
10861         * lib/Makefile.in: Install libraries in /usr/lib/w32api when building
10862         for cygwin.
10863
10864 2001-04-24  Christopher Faylor  <cgf@cygnus.com>
10865
10866         * include/winsock2.h: Protect one *more* newlib defines when compiling
10867         cygwin.
10868
10869 2001-04-23  Christopher Faylor  <cgf@cygnus.com>
10870
10871         * include/winsock2.h: Protect some more newlib defines when compiling
10872         cygwin.
10873
10874 2001-04-23  Christopher Faylor  <cgf@cygnus.com>
10875
10876         * include/winsock.h: Protect some more newlib defines when compiling
10877         cygwin.
10878
10879 2001-04-17  Egor Duda  <deo@logos-m.ru>
10880
10881         * include/windows.h: Define _ANONYMOUS_STRUCT and _ANONYMOUS_UNION
10882         as __extenstion__ when appropriate.
10883         * include/mmsystem.h: Mark anonymous structs and unions as
10884         __extension__ to prevent compiler warning when invoked with
10885         -pedantic
10886         * include/oaidl.h: Ditto.
10887         * include/objidl.h: Ditto.
10888         * include/olectl.h: Ditto.
10889         * include/prsht.h: Ditto.
10890         * include/shlobj.h: Ditto.
10891         * include/winbase.h: Ditto.
10892         * include/winnt.h: Ditto.
10893         * include/wtypes.h: Ditto.
10894
10895 2001-04-11  Danny Smith  <dannysmith@users.sourceforge.net>
10896
10897         * include/windows.h (#include <winsock.h>): Include <winsock2.h>
10898         instead if (_WIN32_WINNT >= 0x0400)&&(__W32API_MAJOR_VERSION > 0).
10899
10900 2001-04-11  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10901
10902         * include/winuser.h (WM_IME_*): Remove defines (now in imm.h).
10903
10904 2001-04-11  John Fortin  <fortinj@attglobal.net>
10905
10906         * include/windef.h (*PBOOL): Unprotect from XFree86Server.
10907         (*LPBOOL): Ditto.
10908
10909 2001-04-08  Christopher Faylor  <cgf@cygnus.com>
10910
10911         * include/winnt.h (GetCurrentFiber): Make "external __inline" or asm
10912         code will be included in every module which includes this header.
10913         (GetFiberData): Ditto.
10914
10915 2001-04-08  Earnie Boyd  <earnie@users.sourceforge.net>
10916
10917         * include/winnt.h (GetCurrentFiber): Fix typo.
10918
10919 2001-04-08  Earnie Boyd  <earnie@users.sourceforge.net>
10920
10921         * include/shellapi.h: (CommandLineToArgvW): Add WINAPI declaration.
10922         * include/winbase.h: (GetFileAttributesExW): Fix typo.
10923         * include/wingdi.h: (StartDocA): Change LPDOCINFOA to DOCINFOA*.
10924         (StartDocB): Chage LNPDOCINFOB to DOCINFOB*.
10925         Thanks To: Kent Tamura  <tkent@users.sourceforge.net>
10926
10927         * include/winnt.h: (GetFiberData): Add __inline assembler coding.
10928         (GetCurrentFiber): Ditto.
10929         Thanks to: Andy Younger  <AndyY@redlemon.com>
10930
10931         * include/windef.h: (HMONITOR_DECLARED): New definition to stop
10932         DirectX 8 from complaining.
10933         Thanks to: Sigbjørn Lund Olsen  <mosikos@online.no>
10934
10935 2001-04-08  Michael Soderstrom  <ichaelsoderstro@hotmail.com>
10936
10937         * include/commctrl.h Updated TreeView and ListView defines and macros.
10938
10939 2001-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
10940
10941         * include/winuser.h (MB_SERVICE_NOTIFICATION): Correct value for NT4
10942         and above.
10943
10944 2001-03-30  Earnie Boyd  <earnie@users.sourceforge.net>
10945         * include/winuser.h (VK_KANA): New definition.
10946         Thanks to: "Harold Hunt" <huntharo@msu.edu>
10947
10948 2001-03-29  Earnie Boyd  <earnie@users.sourceforge.net
10949
10950         * include/winuser.h (RT_CURSOR): Add protection for XFree86Server.
10951         (RT_FONT): Ditto.
10952         * include/basetsd.h (INT32): Ditto.
10953         * include/windef.h (ATOM): Ditto.
10954         (BOOL): Ditto.
10955         (BYTE): Ditto.
10956         * include/winbase.h (FreeResource): Ditto.
10957         Thanks to: "Harold Hunt" <huntharo@msu.edu>
10958
10959 2001-03-20  Danny Smith  <dannysmith@users.sourceforge.net>
10960
10961         * include/winsock.h (_SYS_TYPES_H macro guard for int types): Remove;
10962         use only _BSDTYPES_DEFINED macro now defined in newlib sys/types.h.
10963         (SYS_TYPES_H macro guard for fd_set): Replace with_SYS_TYPES_FD_SET
10964         macro now defined in newlib sys/types.h.  Emit warning if defined.
10965         * include/winsock2.h: Ditto.
10966         * include/windows.h (Win32_Winsock): Replace with new macros
10967         __USE_W32_SOCKETS and warn of deprecation.
10968
10969 2001-03-13  Earnie Boyd  <earnie@users.sourceforge.net
10970
10971         * include/wingdi.h: (DOCINFO) Ansi version defined incorrectly.
10972         Thanks to: Mattia Barbon <mbarbon@dsi.unive.it>
10973
10974 2001-03-12  Earnie Boyd  <earnie@users.sourceforge.net
10975
10976         * include/commctrl.h (TBSTYLE_FLAT): New definition.
10977         (TB_GETBUTTONSIZE): Ditto.
10978         (TCS_HOTTRACK): Ditto.
10979         Thanks to: Chris Hansen <popeofpop@softhome.net>
10980
10981 2001-03-01  Earnie Boyd  <earnie@users.sourceforge.net
10982
10983         * Makefile.in: (snapshot): Add target.
10984         * lib/Makefile.in: (install-headers): Use installdir variable.
10985         (installdir): Set value based on target-alias.
10986
10987 2001-02-21  Earnie Boyd  <earnie@users.sourceforge.net
10988
10989         * include/w32api.h: (_W32API_VERSION): Remove.
10990         (__W32API_VERSION): Add.
10991         (__W32API_MAJOR_VERSION): Ditto.
10992         (__W32API_MINOR_VERSION): Ditto.
10993
10994 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10995
10996         * include/wingdi.h (struct _DOCINFO[AW]): UNICODE it.
10997         (StartDoc[AW]): Use UNICODE'd LPDOCINFO[AW]
10998         * include/winuser.h (struct tagMOUSEKEYS): Define new structure.
10999         * include/winerror.h (NTE_*): Add CryptoAPI error codes.
11000
11001 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
11002
11003         * include/mswsock.h: New file.
11004         * include/ws2tcpip.h: New file.
11005         * include/winsock.h (IPPROTO_IGMP): New define.
11006         (IPPROTO_GGP): Correct value.
11007         (SO_* macros): Remove mswsock defines.
11008         (TCP_BSDURGENT): Likewise.
11009         (IP_* macros): Add comment warning of WinSock2 incompatibility
11010         (WSARecvEx): Remove mswsock prototype.
11011         (TransmitFile): Likewise.
11012         (AcceptEx): Likewise.
11013         (GetAcceptExSockaddrs): Likewise.
11014         (struct _TRANSMIT_FILE_BUFFERS): Remove mswsock definition.
11015         (#include <mswsock.h>): Add directive and explanatory comment
11016         * include/winsock2.h (header guard): add guard for  _WINSOCK_H
11017         (_WINSOCK_H): Define to prevent later inclusion of winsock.h
11018         (#include <winsock.h>): Replace directive with winsock.h file content
11019         The following changes apply to the merged file:
11020         (FD_SET): Keep winsock2.h definition, delete winsock.h definition
11021         (SOMAXCONN): Likewise
11022         (#include <nspapi.h>): Move - don't include until LPSOCKADDR defined
11023         (IP_* macros): Delete WinSock1 definitions (WinSock2 definitions now
11024         in ws2tcpip.h)
11025         (struct ip_mreq): Delete (now defined in ws2tcpip.h for WinSock2)
11026         (FD_*_BIT and FD_* defines): Place together and extend to
11027         FD_MAX_EVENTS 10
11028         (AF* defines): Extend to AF_MAX 10
11029         (WSAIsBlocking): #if 0 out prototype (N/A in WinSock2)
11030         (WSAUnhookBlockingHook): Likewise.
11031         (WSASetBlockingHook): Likewise.
11032         (WSACancelBlockingCall): Likewise.
11033         (WSAEINPROGRESS): Comment as not raised in WinSock2.
11034         (#include <mswsock.h>): Delete directive inherited from winsock.h
11035         (WSA_QOS* defines): Add QualityOfService error codes.
11036         (SIO_* defines): Add new macros
11037         * include/ipexport.h (IP_STATUS flags): Add definitions.
11038         (IP_FLAG_DF): Likewise.
11039         (IP_OPT_* ): Likewise.
11040         (struct ip_option_information): Likewise.
11041         (struct icmp_echo_reply): Likewise.
11042
11043 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
11044
11045         * include/commctrl.h: Revert TEXT change.
11046         * include/lmalert.h: Ditto.
11047         * include/lmcons.h: Ditto.
11048         * include/lmsname.h: Ditto.
11049         * include/lmsvc.h: Ditto.
11050         * include/ntsecapi.h: Ditto.
11051         * include/oledlg.h: Ditto.
11052         * include/ras.h: Ditto.
11053         * include/regstr.h: Ditto.
11054         * include/richedit.h: Ditto.
11055         * include/wininet.h: Ditto.
11056         * include/winnt.h: Ditto.
11057
11058 2001-02-15  Earnie Boyd  <earnie@users.sourceforge.net>
11059
11060         * include/commctrl.h: Use _TEXT() instead of TEXT() throughout.
11061         * include/lmalert.h: Ditto.
11062         * include/lmcons.h: Ditto.
11063         * include/lmsname.h: Ditto.
11064         * include/lmsvc.h: Ditto.
11065         * include/ntsecapi.h: Ditto.
11066         * include/oledlg.h: Ditto.
11067         * include/ras.h: Ditto.
11068         * include/regstr.h: Ditto.
11069         * include/richedit.h: Ditto.
11070         * include/wininet.h: Ditto.
11071         * include/w32api.h: New File.
11072
11073 2001-02-13  Corinna Vinschen  <corinna@vinschen.de>
11074
11075         * include/shlobj.h: Add missing SLR_* flags.
11076
11077 2001-02-12:  Earnie Boyd  <earnie@users.sourceforge.net>
11078
11079         * lib/Makefile.in: (host_alias): Add variable.
11080         (host_build): Ditto:
11081         (xinstall): Removed
11082         (xinstall-libraries): Ditto.
11083         (xinstall-headers): Ditto.
11084         (xuninstall): Ditto.
11085         (xuninstall-libraries): Ditto.
11086         (xuninstall-headers): Ditto.
11087         * Makefile.in: (host_alias): Add variable.
11088         (build_alias): Ditto.
11089
11090 2001-02-02  Earnie Boyd  <earnie@users.sourceforge.net>
11091
11092         * include/winnt.h: (__TEXT): Add private macro.
11093         (_TEXT): Modify definition to use __TEXT.
11094         (_T): Ditto.
11095         This change allows the passing of a MACRO as an argument and have that
11096         MACRO resolved first.
11097         Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com>
11098
11099 2001-01-31  Earnie Boyd  <earnie@users.sourceforge.net>
11100
11101         * Makefile.in: Increment VERSION to 0.5
11102         * include/winnt.h: Change TEXT to _TEXT throughout.
11103         (SID_RELEASE): Define.
11104         Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com>
11105
11106 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
11107
11108         * Apply Phil Krylov patches.
11109         2001-01-19  Phil Krylov  <phil@mail.ru>
11110         * include/commctrl.h: (HDI_IMAGE) New definition.
11111         (HDI_DI_SETITEM) Ditto.
11112         (HDI_ORDER) Ditto.
11113         (HDI_FILTER) Ditto.
11114         (HDF_BITMAP_ON_RIGHT) Ditto.
11115         (HDF_IMAGE) Ditto.
11116         (HDM_SETORDERARRAY) Ditto.
11117         (Header_SetOrderArray) Ditto.
11118         (ICC_BAR_CLASSES) Ditto.
11119         (struct _HD_ITEMA) Change definition.
11120         (struct _HD_ITEMW) Ditto.
11121         (struct tagINITCOMMONCONTROLSEX) Enclose in _WIN32_IE braces.
11122         (InitCommonControlsEx()) Ditto.
11123         2001-01-23  Phil Krylov  <phil@mail.ru>
11124         * include/richedit.h: Many Richedit 2.0 definitions.
11125
11126 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
11127
11128         * include/winuser.h: (IDC_HAND)  New resource identifier.
11129         Thanks to: Mark Jordon <mark_jordan@ieee.org>
11130
11131 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
11132
11133         * include/iptypes.h: Include <sys/types.h> for time_t declaration.
11134         Fix typo's.
11135
11136 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
11137
11138         * include/objidl.h: (GetClassID): Argument needs to be a pointer.
11139         (GetUnmarshalClass): CLSID argument needs to be a pointer.
11140         Thanks To: <bge@users.sourceforge.net>
11141
11142 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
11143
11144         * Apply Danny Smith patch 102386
11145         2000-11-15  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11146         * lib/rasapi32.def: add symbols available in NT4 and W2k
11147
11148 2001-01-28  Earnie Boyd  <earnie@users.sourceforge.net>
11149
11150         * Apply Danny Smith patch 102382
11151         2000-11-15  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11152         * lib/mswsock.def: remove leading underscores from symbol names
11153
11154 2001-01-28  Earnie Boyd  <earnie@users.sourceforge.net>
11155
11156         * Apply Danny Smith patch 102446
11157         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11158         * include/sql.h (ODBCVER): change default to 0x0351.
11159         (SQLSetScrollOptions): non-core function, move prototype to sqlext.h.
11160         (SQLColAttributes): likewise.
11161         (SQLBindParam): add prototype for ODBC 3.x function.
11162         (SQLCloseCursor): likewise.
11163         (SQLColAttribute): likewise.
11164         (SQLCopyDesc):likewise.
11165         (SQLEndTran): likewise.
11166         (SQLFetchScroll): likewise.
11167         (SQLGetConnectAttr): likewise.
11168         (SQLGetDescField): likewise.
11169         (SQLGetDescRec): likewise.
11170         (SQLGetDiagField): likewise.
11171         (SQLGetDiagRec): likewise.
11172         (SQLGetEnvAttr): likewise.
11173         (SQLGetStmtAttr): likewise.
11174         (SQLSetConnectAttr): likewise.
11175         (SQLSetDescField):likewise.
11176         (SQLSetDescRec): likewise.
11177         (SQLSetEnvAttr): likewise.
11178         (SQLSetStmtAttr): likewise.
11179         (SQLINTENGER and SQLUINTEGER): replace with SQLLEN and SQLULEN for
11180         _WIN64 compatability;
11181         (SQL_ACCESS_MODE): Move define to sqlext.h (used in non-core functions).
11182         (SQL_ACTIVE_CONNECTIONS): likewise.
11183         (SQL_ACTIVE_STATEMENTS): likewise.
11184         (SQL_ALL_EXCEPT_LIKE): likewise.
11185         (SQL_API_ALL_FUNCTIONS): likewise.
11186         (SQL_API_LOADBYORDINAL): likewise.
11187         (SQL_API_SQLBINDPARAMETER): likewise.
11188         (SQL_API_SQLBROWSECONNECT): likewise.
11189         (SQL_API_SQLCOLATTRIBUTES): likewise.
11190         (SQL_API_SQLCOLUMNPRIVILEGES): likewise.
11191         (SQL_API_SQLDESCRIBEPARAM): likewise.
11192         (SQL_API_SQLDRIVERCONNECT): likewise.
11193         (SQL_API_SQLDRIVERS): likewise.
11194         (SQL_API_SQLEXTENDEDFETCH): likewise.
11195         (SQL_API_SQLFOREIGNKEYS): likewise.
11196         (SQL_API_SQLMORERESULTS): likewise.
11197         (SQL_API_SQLNATIVESQL): likewise.
11198         (SQL_API_SQLNUMPARAMS): likewise.
11199         (SQL_API_SQLPARAMOPTIONS): likewise.
11200         (SQL_API_SQLPRIMARYKEYS): likewise.
11201         (SQL_API_SQLPROCEDURECOLUMNS): likewise.
11202         (SQL_API_SQLPROCEDURES): likewise.
11203         (SQL_API_SQLSETPOS): likewise.
11204         (SQL_API_SQLSETSCROLLOPTIONS): likewise.
11205         (SQL_API_SQLTABLEPRIVILEGES): likewise.
11206         (SQL_ASYNC_ENABLE): likewise.
11207         (SQL_ASYNC_ENABLE_DEFAULT): likewise.
11208         (SQL_ASYNC_ENABLE_OFF): likewise.
11209         (SQL_ASYNC_ENABLE_ON): likewise.
11210         (SQL_ATTR_READONLY): likewise.
11211         (SQL_ATTR_READWRITE_UNKNOWN): likewise.
11212         (SQL_ATTR_WRITE): likewise.
11213         (SQL_AUTOCOMMIT): likewise.
11214         (SQL_AUTOCOMMIT_DEFAULT): likewise.
11215         (SQL_AUTOCOMMIT_OFF): likewise.
11216         (SQL_AUTOCOMMIT_ON): likewise.
11217         (SQL_BEST_ROWID): likewise.
11218         (SQL_BIGINT): likewise.
11219         (SQL_BINARY): likewise.
11220         (SQL_BIND_BY_COLUMN): likewise.
11221         (SQL_BIND_TYPE): likewise.
11222         (SQL_BIND_TYPE_DEFAULT): likewise.
11223         (SQL_BIT): likewise.
11224         (SQL_BOOKMARK_PERSISTENCE): likewise.
11225         (SQL_BP_CLOSE): likewise.
11226         (SQL_BP_DELETE): likewise.
11227         (SQL_BP_DROP): likewise.
11228         (SQL_BP_OTHER_HSTMT): likewise.
11229         (SQL_BP_SCROLL): likewise.
11230         (SQL_BP_TRANSACTION): likewise.
11231         (SQL_BP_UPDATE): likewise.
11232         (SQL_C_BINARY): likewise.
11233         (SQL_C_BIT): likewise.
11234         (SQL_C_BOOKMARK): likewise.
11235         (SQL_C_CHAR): likewise.
11236         (SQL_C_DATE): likewise.
11237         (SQL_C_DEFAULT): likewise.
11238         (SQL_C_DOUBLE): likewise.
11239         (SQL_C_FLOAT): likewise.
11240         (SQL_C_LONG): likewise.
11241         (SQL_C_SHORT): likewise.
11242         (SQL_C_SLONG): likewise.
11243         (SQL_C_SSHORT): likewise.
11244         (SQL_C_STINYINT): likewise.
11245         (SQL_C_TIME): likewise.
11246         (SQL_C_TIMESTAMP): likewise.
11247         (SQL_C_TINYINT): likewise.
11248         (SQL_C_ULONG): likewise.
11249         (SQL_C_USHORT): likewise.
11250         (SQL_C_UTINYINT): likewise.
11251         (SQL_CB_NON_NULL): likewise.
11252         (SQL_CB_NULL): likewise.
11253         (SQL_CC_CLOSE): likewise.
11254         (SQL_CC_DELETE): likewise.
11255         (SQL_CC_PRESERVE): likewise.
11256         (SQL_CN_ANY): likewise.
11257         (SQL_CN_DIFFERENT): likewise.
11258         (SQL_CN_NONE): likewise.
11259         (SQL_COLATT_OPT_MAX): likewise.
11260         (SQL_COLATT_OPT_MIN): likewise.
11261         (SQL_COLUMN_ALIAS): likewise.
11262         (SQL_COLUMN_AUTO_INCREMENT): likewise.
11263         (SQL_COLUMN_CASE_SENSITIVE): likewise.
11264         (SQL_COLUMN_COUNT): likewise.
11265         (SQL_COLUMN_DISPLAY_SIZE): likewise.
11266         (SQL_COLUMN_DRIVER_START): likewise.
11267         (SQL_COLUMN_LABEL): likewise.
11268         (SQL_COLUMN_LENGTH): likewise.
11269         (SQL_COLUMN_MONEY): likewise.
11270         (SQL_COLUMN_NAME): likewise.
11271         (SQL_COLUMN_NULLABLE): likewise.
11272         (SQL_COLUMN_OWNER_NAME): likewise.
11273         (SQL_COLUMN_PRECISION): likewise.
11274         (SQL_COLUMN_QUALIFIER_NAME): likewise.
11275         (SQL_COLUMN_SCALE): likewise.
11276         (SQL_COLUMN_SEARCHABLE): likewise.
11277         (SQL_COLUMN_TABLE_NAME): likewise.
11278         (SQL_COLUMN_TYPE): likewise.
11279         (SQL_COLUMN_TYPE_NAME): likewise.
11280         (SQL_COLUMN_UNSIGNED): likewise.
11281         (SQL_COLUMN_UPDATABLE): likewise.
11282         (SQL_CONCAT_NULL_BEHAVIOR): likewise.
11283         (SQL_CONCUR_DEFAULT): likewise.
11284         (SQL_CONCUR_LOCK): likewise.
11285         (SQL_CONCUR_READ_ONLY): likewise.
11286         (SQL_CONCUR_ROWVER): likewise.
11287         (SQL_CONCUR_TIMESTAMP): likewise.
11288         (SQL_CONCUR_VALUES): likewise.
11289         (SQL_CONCURRENCY): likewise.
11290         (SQL_CONN_OPT_MAX): likewise.
11291         (SQL_CONN_OPT_MIN): likewise.
11292         (SQL_CONNECT_OPT_DRVR_START): likewise.
11293         (SQL_CONVERT_BIGINT): likewise.
11294         (SQL_CONVERT_BINARY): likewise.
11295         (SQL_CONVERT_BIT): likewise.
11296         (SQL_CONVERT_CHAR): likewise.
11297         (SQL_CONVERT_DATE): likewise.
11298         (SQL_CONVERT_DECIMAL): likewise.
11299         (SQL_CONVERT_DOUBLE): likewise.
11300         (SQL_CONVERT_FLOAT): likewise.
11301         (SQL_CONVERT_FUNCTIONS): likewise.
11302         (SQL_CONVERT_INTEGER): likewise.
11303         (SQL_CONVERT_LONGVARBINARY): likewise.
11304         (SQL_CONVERT_LONGVARCHAR): likewise.
11305         (SQL_CONVERT_NUMERIC): likewise.
11306         (SQL_CONVERT_REAL): likewise.
11307         (SQL_CONVERT_SMALLINT): likewise.
11308         (SQL_CONVERT_TIME): likewise.
11309         (SQL_CONVERT_TIMESTAMP): likewise.
11310         (SQL_CONVERT_TINYINT): likewise.
11311         (SQL_CONVERT_VARBINARY): likewise.
11312         (SQL_CONVERT_VARCHAR): likewise.
11313         (SQL_CORRELATION_NAME): likewise.
11314         (SQL_CR_CLOSE): likewise.
11315         (SQL_CR_DELETE): likewise.
11316         (SQL_CR_PRESERVE): likewise.
11317         (SQL_CUR_DEFAULT): likewise.
11318         (SQL_CUR_USE_DRIVER): likewise.
11319         (SQL_CUR_USE_IF_NEEDED): likewise.
11320         (SQL_CUR_USE_ODBC): likewise.
11321         (SQL_CURRENT_QUALIFIER): likewise.
11322         (SQL_CURSOR_DYNAMIC): likewise.
11323         (SQL_CURSOR_FORWARD_ONLY): likewise.
11324         (SQL_CURSOR_KEYSET_DRIVEN): likewise.
11325         (SQL_CURSOR_ROLLBACK_BEHAVIOR): likewise.
11326         (SQL_CURSOR_STATIC): likewise.
11327         (SQL_CURSOR_TYPE): likewise.
11328         (SQL_CURSOR_TYPE_DEFAULT): likewise.
11329         (SQL_CVT_BIGINT): likewise.
11330         (SQL_CVT_BINARY): likewise.
11331         (SQL_CVT_BIT): likewise.
11332         (SQL_CVT_CHAR): likewise.
11333         (SQL_CVT_DATE): likewise.
11334         (SQL_CVT_DECIMAL): likewise.
11335         (SQL_CVT_DOUBLE): likewise.
11336         (SQL_CVT_FLOAT): likewise.
11337         (SQL_CVT_INTEGER): likewise.
11338         (SQL_CVT_LONGVARBINARY): likewise.
11339         (SQL_CVT_LONGVARCHAR): likewise.
11340         (SQL_CVT_NUMERIC): likewise.
11341         (SQL_CVT_REAL): likewise.
11342         (SQL_CVT_SMALLINT): likewise.
11343         (SQL_CVT_TIME): likewise.
11344         (SQL_CVT_TIMESTAMP): likewise.
11345         (SQL_CVT_TINYINT): likewise.
11346         (SQL_CVT_VARBINARY): likewise.
11347         (SQL_CVT_VARCHAR): likewise.
11348         (SQL_DATABASE_NAME): likewise.
11349         (SQL_DATE): likewise.
11350         (SQL_DRIVER_HDBC): likewise.
11351         (SQL_DRIVER_HENV): likewise.
11352         (SQL_DRIVER_HLIB): likewise.
11353         (SQL_DRIVER_HSTMT): likewise.
11354         (SQL_DRIVER_NAME): likewise.
11355         (SQL_DRIVER_ODBC_VER): likewise.
11356         (SQL_DRIVER_VER): likewise.
11357         (SQL_ENSURE): likewise.
11358         (SQL_EXPRESSIONS_IN_ORDERBY): likewise.
11359         (SQL_EXT_API_LAST): likewise.
11360         (SQL_EXT_API_START): likewise.
11361         (SQL_FD_FETCH_BOOKMARK): likewise.
11362         (SQL_FD_FETCH_PREV): likewise.
11363         (SQL_FD_FETCH_RESUME): likewise.
11364         (SQL_FETCH_PREV): likewise.
11365         (SQL_FETCH_RESUME): likewise.
11366         (SQL_FILE_NOT_SUPPORTED): likewise.
11367         (SQL_FILE_QUALIFIER): likewise.
11368         (SQL_FILE_TABLE): likewise.
11369         (SQL_FILE_USAGE): likewise.
11370         (SQL_FN_CVT_CONVERT): likewise.
11371         (SQL_FN_NUM_ABS): likewise.
11372         (SQL_FN_NUM_ACOS): likewise.
11373         (SQL_FN_NUM_ASIN): likewise.
11374         (SQL_FN_NUM_ATAN): likewise.
11375         (SQL_FN_NUM_ATAN2): likewise.
11376         (SQL_FN_NUM_CEILING): likewise.
11377         (SQL_FN_NUM_COS): likewise.
11378         (SQL_FN_NUM_COT): likewise.
11379         (SQL_FN_NUM_DEGREES): likewise.
11380         (SQL_FN_NUM_EXP): likewise.
11381         (SQL_FN_NUM_FLOOR): likewise.
11382         (SQL_FN_NUM_LOG): likewise.
11383         (SQL_FN_NUM_LOG10): likewise.
11384         (SQL_FN_NUM_MOD): likewise.
11385         (SQL_FN_NUM_PI): likewise.
11386         (SQL_FN_NUM_POWER): likewise.
11387         (SQL_FN_NUM_RADIANS): likewise.
11388         (SQL_FN_NUM_RAND): likewise.
11389         (SQL_FN_NUM_ROUND): likewise.
11390         (SQL_FN_NUM_SIGN): likewise.
11391         (SQL_FN_NUM_SIN): likewise.
11392         (SQL_FN_NUM_SQRT): likewise.
11393         (SQL_FN_NUM_TAN): likewise.
11394         (SQL_FN_NUM_TRUNCATE): likewise.
11395         (SQL_FN_STR_ASCII): likewise.
11396         (SQL_FN_STR_CHAR): likewise.
11397         (SQL_FN_STR_CONCAT): likewise.
11398         (SQL_FN_STR_DIFFERENCE): likewise.
11399         (SQL_FN_STR_INSERT): likewise.
11400         (SQL_FN_STR_LCASE): likewise.
11401         (SQL_FN_STR_LEFT): likewise.
11402         (SQL_FN_STR_LENGTH): likewise.
11403         (SQL_FN_STR_LOCATE): likewise.
11404         (SQL_FN_STR_LOCATE_2): likewise.
11405         (SQL_FN_STR_LTRIM): likewise.
11406         (SQL_FN_STR_REPEAT): likewise.
11407         (SQL_FN_STR_REPLACE): likewise.
11408         (SQL_FN_STR_RIGHT): likewise.
11409         (SQL_FN_STR_RTRIM): likewise.
11410         (SQL_FN_STR_SOUNDEX): likewise.
11411         (SQL_FN_STR_SPACE): likewise.
11412         (SQL_FN_STR_SUBSTRING): likewise.
11413         (SQL_FN_STR_UCASE): likewise.
11414         (SQL_FN_SYS_DBNAME): likewise.
11415         (SQL_FN_SYS_IFNULL): likewise.
11416         (SQL_FN_SYS_USERNAME): likewise.
11417         (SQL_FN_TD_CURDATE): likewise.
11418         (SQL_FN_TD_CURTIME): likewise.
11419         (SQL_FN_TD_DAYNAME): likewise.
11420         (SQL_FN_TD_DAYOFMONTH): likewise.
11421         (SQL_FN_TD_DAYOFWEEK): likewise.
11422         (SQL_FN_TD_DAYOFYEAR): likewise.
11423         (SQL_FN_TD_HOUR): likewise.
11424         (SQL_FN_TD_MINUTE): likewise.
11425         (SQL_FN_TD_MONTH): likewise.
11426         (SQL_FN_TD_MONTHNAME): likewise.
11427         (SQL_FN_TD_NOW): likewise.
11428         (SQL_FN_TD_QUARTER): likewise.
11429         (SQL_FN_TD_SECOND): likewise.
11430         (SQL_FN_TD_TIMESTAMPadd): likewise.
11431         (SQL_FN_TD_TIMESTAMPDIFF): likewise.
11432         (SQL_FN_TD_WEEK): likewise.
11433         (SQL_FN_TD_YEAR): likewise.
11434         (SQL_FN_TSI_DAY): likewise.
11435         (SQL_FN_TSI_FRAC_SECOND): likewise.
11436         (SQL_FN_TSI_HOUR): likewise.
11437         (SQL_FN_TSI_MINUTE): likewise.
11438         (SQL_FN_TSI_MONTH): likewise.
11439         (SQL_FN_TSI_QUARTER): likewise.
11440         (SQL_FN_TSI_SECOND): likewise.
11441         (SQL_FN_TSI_WEEK): likewise.
11442         (SQL_FN_TSI_YEAR): likewise.
11443         (SQL_GB_GROUP_BY_CONTAINS_SELECT): likewise.
11444         (SQL_GB_GROUP_BY_EQUALS_SELECT): likewise.
11445         (SQL_GB_NO_RELATION): likewise.
11446         (SQL_GB_NOT_SUPPORTED): likewise.
11447         (SQL_GD_BLOCK): likewise.
11448         (SQL_GD_BOUND): likewise.
11449         (SQL_GET_BOOKMARK): likewise.
11450         (SQL_GROUP_BY): likewise.
11451         (SQL_INFO_DRIVER_START): likewise.
11452         (SQL_INFO_FIRST): likewise.
11453         (SQL_INFO_LAST): likewise.
11454         (SQL_INTERVAL_DAY): likewise.
11455         (SQL_INTERVAL_DAY_TO_HOUR): likewise.
11456         (SQL_INTERVAL_DAY_TO_MINUTE): likewise.
11457         (SQL_INTERVAL_DAY_TO_SECOND): likewise.
11458         (SQL_INTERVAL_HOUR): likewise.
11459         (SQL_INTERVAL_HOUR_TO_MINUTE): likewise.
11460         (SQL_INTERVAL_HOUR_TO_SECOND): likewise.
11461         (SQL_INTERVAL_MINUTE): likewise.
11462         (SQL_INTERVAL_MINUTE_TO_SECOND): likewise.
11463         (SQL_INTERVAL_MONTH): likewise.
11464         (SQL_INTERVAL_SECOND): likewise.
11465         (SQL_INTERVAL_YEAR): likewise.
11466         (SQL_INTERVAL_YEAR_TO_MONTH): likewise.
11467         (SQL_KEYSET_SIZE): likewise.
11468         (SQL_KEYSET_SIZE_DEFAULT): likewise.
11469         (SQL_KEYWORDS): likewise.
11470         (SQL_LCK_EXCLUSIVE): likewise.
11471         (SQL_LCK_NO_CHANGE): likewise.
11472         (SQL_LCK_UNLOCK): likewise.
11473         (SQL_LIKE_ESCAPE_CLAUSE): likewise.
11474         (SQL_LIKE_ONLY): likewise.
11475         (SQL_LOCK_TYPES): likewise.
11476         (SQL_LOGIN_TIMEOUT): likewise.
11477         (SQL_LOGIN_TIMEOUT_DEFAULT): likewise.
11478         (SQL_LONGVARBINARY): likewise.
11479         (SQL_LONGVARCHAR): likewise.
11480         (SQL_MAX_BINARY_LITERAL_LEN): likewise.
11481         (SQL_MAX_CHAR_LITERAL_LEN): likewise.
11482         (SQL_MAX_DSN_LENGTH): likewise.
11483         (SQL_MAX_LENGTH): likewise.
11484         (SQL_MAX_LENGTH_DEFAULT): likewise.
11485         (SQL_MAX_OPTION_STRING_LENGTH): likewise.
11486         (SQL_MAX_OWNER_NAME_LEN): likewise.
11487         (SQL_MAX_PROCEDURE_NAME_LEN): likewise.
11488         (SQL_MAX_QUALIFIER_NAME_LEN): likewise.
11489         (SQL_MAX_ROW_SIZE_INCLUDES_LONG): likewise.
11490         (SQL_MAX_ROWS): likewise.
11491         (SQL_MAX_ROWS_DEFAULT): likewise.
11492         (SQL_MODE_DEFAULT): likewise.
11493         (SQL_MODE_READ_ONLY): likewise.
11494         (SQL_MODE_READ_WRITE): likewise.
11495         (SQL_MULT_RESULT_SETS): likewise.
11496         (SQL_MULTIPLE_ACTIVE_TXN): likewise.
11497         (SQL_NC_END): likewise.
11498         (SQL_NC_START): likewise.
11499         (SQL_NEED_LONG_DATA_LEN): likewise.
11500         (SQL_NNC_NON_NULL): likewise.
11501         (SQL_NNC_NULL): likewise.
11502         (SQL_NO_TOTAL): likewise.
11503         (SQL_NON_NULLABLE_COLUMNS): likewise.
11504         (SQL_NOSCAN): likewise.
11505         (SQL_NOSCAN_DEFAULT): likewise.
11506         (SQL_NOSCAN_OFF): likewise.
11507         (SQL_NOSCAN_ON): likewise.
11508         (SQL_NUM_EXTENSIONS): likewise.
11509         (SQL_NUM_FUNCTIONS): likewise.
11510         (SQL_NUMERIC_FUNCTIONS): likewise.
11511         (SQL_OAC_LEVEL1): likewise.
11512         (SQL_OAC_LEVEL2): likewise.
11513         (SQL_OAC_NONE): likewise.
11514         (SQL_ODBC_API_CONFORMANCE): likewise.
11515         (SQL_ODBC_CURSORS): likewise.
11516         (SQL_ODBC_KEYWORDS): likewise.
11517         (SQL_ODBC_SAG_CLI_CONFORMANCE): likewise.
11518         (SQL_ODBC_SQL_CONFORMANCE): likewise.
11519         (SQL_ODBC_SQL_OPT_IEF): likewise.
11520         (SQL_ODBC_VER): likewise.
11521         (SQL_OPT_TRACE): likewise.
11522         (SQL_OPT_TRACE_DEFAULT): likewise.
11523         (SQL_OPT_TRACE_FILE_DEFAULT): likewise.
11524         (SQL_OPT_TRACE_OFF): likewise.
11525         (SQL_OPT_TRACE_ON): likewise.
11526         (SQL_OPT_TRACEFILE): likewise.
11527         (SQL_OSC_CORE): likewise.
11528         (SQL_OSC_EXTENDED): likewise.
11529         (SQL_OSC_MINIMUM): likewise.
11530         (SQL_OSCC_COMPLIANT): likewise.
11531         (SQL_OSCC_NOT_COMPLIANT): likewise.
11532         (SQL_OU_DML_STATEMENTS): likewise.
11533         (SQL_OU_INDEX_DEFINITION): likewise.
11534         (SQL_OU_PRIVILEGE_DEFINITION): likewise.
11535         (SQL_OU_PROCEDURE_INVOCATION): likewise.
11536         (SQL_OU_TABLE_DEFINITION): likewise.
11537         (SQL_OUTER_JOINS): likewise.
11538         (SQL_OWNER_TERM): likewise.
11539         (SQL_OWNER_USAGE): likewise.
11540         (SQL_PACKET_SIZE): likewise.
11541         (SQL_PC_NOT_PSEUDO): likewise.
11542         (SQL_POS_add): likewise.
11543         (SQL_POS_DELETE): likewise.
11544         (SQL_POS_OPERATIONS): likewise.
11545         (SQL_POS_POSITION): likewise.
11546         (SQL_POS_REFRESH): likewise.
11547         (SQL_POS_UPDATE): likewise.
11548         (SQL_POSITIONED_STATEMENTS): likewise.
11549         (SQL_PROCEDURE_TERM): likewise.
11550         (SQL_PROCEDURES): likewise.
11551         (SQL_PS_POSITIONED_DELETE): likewise.
11552         (SQL_PS_POSITIONED_UPDATE): likewise.
11553         (SQL_PS_SELECT_FOR_UPDATE): likewise.
11554         (SQL_QL_END): likewise.
11555         (SQL_QL_START): likewise.
11556         (SQL_QU_DML_STATEMENTS): likewise.
11557         (SQL_QU_INDEX_DEFINITION): likewise.
11558         (SQL_QU_PRIVILEGE_DEFINITION): likewise.
11559         (SQL_QU_PROCEDURE_INVOCATION): likewise.
11560         (SQL_QU_TABLE_DEFINITION): likewise.
11561         (SQL_QUALIFIER_LOCATION): likewise.
11562         (SQL_QUALIFIER_NAME_SEPARATOR): likewise.
11563         (SQL_QUALIFIER_TERM): likewise.
11564         (SQL_QUALIFIER_USAGE): likewise.
11565         (SQL_QUERY_TIMEOUT): likewise.
11566         (SQL_QUERY_TIMEOUT_DEFAULT): likewise.
11567         (SQL_QUICK): likewise.
11568         (SQL_QUIET_MODE): likewise.
11569         (SQL_QUOTED_IDENTIFIER_CASE): likewise.
11570         (SQL_RD_DEFAULT): likewise.
11571         (SQL_RD_OFF): likewise.
11572         (SQL_RD_ON): likewise.
11573         (SQL_RETRIEVE_DATA): likewise.
11574         (SQL_ROW_NUMBER): likewise.
11575         (SQL_ROW_UPDATES): likewise.
11576         (SQL_ROWSET_SIZE): likewise.
11577         (SQL_ROWSET_SIZE_DEFAULT): likewise.
11578         (SQL_ROWVER): likewise.
11579         (SQL_SC_NON_UNIQUE): likewise.
11580         (SQL_SC_TRY_UNIQUE): likewise.
11581         (SQL_SC_UNIQUE): likewise.
11582         (SQL_SCCO_OPT_TIMESTAMP): likewise.
11583         (SQL_SCROLL_DYNAMIC): likewise.
11584         (SQL_SCROLL_FORWARD_ONLY): likewise.
11585         (SQL_SCROLL_KEYSET_DRIVEN): likewise.
11586         (SQL_SCROLL_OPTIONS): likewise.
11587         (SQL_SCROLL_STATIC): likewise.
11588         (SQL_SEARCHABLE): likewise.
11589         (SQL_SIGNED_OFFSET): likewise.
11590         (SQL_SIMULATE_CURSOR): likewise.
11591         (SQL_SO_DYNAMIC): likewise.
11592         (SQL_SO_FORWARD_ONLY): likewise.
11593         (SQL_SO_KEYSET_DRIVEN): likewise.
11594         (SQL_SO_MIXED): likewise.
11595         (SQL_SO_STATIC): likewise.
11596         (SQL_SPEC_MAJOR): likewise.
11597         (SQL_SPEC_MINOR): likewise.
11598         (SQL_SPEC_STRING): likewise.
11599         (SQL_SQ_COMPARISON): likewise.
11600         (SQL_SQ_CORRELATED_SUBQUERIES): likewise.
11601         (SQL_SQ_EXISTS): likewise.
11602         (SQL_SQ_IN): likewise.
11603         (SQL_SQ_QUANTIFIED): likewise.
11604         (SQL_SQLSTATE_SIZE): likewise.
11605         (SQL_SS_addITIONS): likewise.
11606         (SQL_SS_DELETIONS): likewise.
11607         (SQL_SS_UPDATES): likewise.
11608         (SQL_STATIC_SENSITIVITY): likewise.
11609         (SQL_STMT_OPT_MAX): likewise.
11610         (SQL_STMT_OPT_MIN): likewise.
11611         (SQL_STRING_FUNCTIONS): likewise.
11612         (SQL_SUBQUERIES): likewise.
11613         (SQL_SYSTEM_FUNCTIONS): likewise.
11614         (SQL_TABLE_STAT): likewise.
11615         (SQL_TABLE_TERM): likewise.
11616         (SQL_TIME): likewise.
11617         (SQL_TIMEDATE_add_INTERVALS): likewise.
11618         (SQL_TIMEDATE_DIFF_INTERVALS): likewise.
11619         (SQL_TIMEDATE_FUNCTIONS): likewise.
11620         (SQL_TIMESTAMP): likewise.
11621         (SQL_TINYINT): likewise.
11622         (SQL_TRANSLATE_DLL): likewise.
11623         (SQL_TRANSLATE_OPTION): likewise.
11624         (SQL_TXN_ISOLATION): likewise.
11625         (SQL_TXN_VERSIONING): likewise.
11626         (SQL_TYPE_DRIVER_END): likewise.
11627         (SQL_TYPE_DRIVER_START): likewise.
11628         (SQL_TYPE_MAX): likewise.
11629         (SQL_TYPE_MIN): likewise.
11630         (SQL_TYPE_NULL): likewise.
11631         (SQL_U_UNION): likewise.
11632         (SQL_U_UNION_ALL): likewise.
11633         (SQL_UB_DEFAULT): likewise.
11634         (SQL_UB_OFF): likewise.
11635         (SQL_UB_ON): likewise.
11636         (SQL_UNICODE): likewise.
11637         (SQL_UNICODE_CHAR): likewise.
11638         (SQL_UNICODE_LONGVARCHAR): likewise.
11639         (SQL_UNICODE_VARCHAR): likewise.
11640         (SQL_UNION): likewise.
11641         (SQL_UNSEARCHABLE): likewise.
11642         (SQL_UNSIGNED_OFFSET): likewise.
11643         (SQL_USE_BOOKMARKS): likewise.
11644         (SQL_VARBINARY): likewise.
11645         (SQL_TRUE): add define for ODBC3.x.
11646         (SQL_FALSE): likewise.
11647         (SQL_AM_CONNECTION): likewise.
11648         (SQL_AM_NONE): likewise.
11649         (SQL_AM_STATEMENT): likewise.
11650         (SQL_API_SQLALLOCHANDLE): likewise.
11651         (SQL_API_SQLBINDPARAM): likewise.
11652         (SQL_API_SQLCLOSECURSOR): likewise.
11653         (SQL_API_SQLCOLATTRIBUTE): likewise.
11654         (SQL_API_SQLCOPYDESC): likewise.
11655         (SQL_API_SQLENDTRAN): likewise.
11656         (SQL_API_SQLFETCHSCROLL): likewise.
11657         (SQL_API_SQLFREEHANDLE): likewise.
11658         (SQL_API_SQLGETCONNECTATTR): likewise.
11659         (SQL_API_SQLGETDESCFIELD): likewise.
11660         (SQL_API_SQLGETDESCREC): likewise.
11661         (SQL_API_SQLGETDIAGFIELD): likewise.
11662         (SQL_API_SQLGETDIAGREC): likewise.
11663         (SQL_API_SQLGETENVATTR): likewise.
11664         (SQL_API_SQLGETSTMTATTR): likewise.
11665         (SQL_API_SQLSETCONNECTATTR): likewise.
11666         (SQL_API_SQLSETDESCFIELD): likewise.
11667         (SQL_API_SQLSETDESCREC): likewise.
11668         (SQL_API_SQLSETENVATTR): likewise.
11669         (SQL_API_SQLSETSTMTATTR): likewise.
11670         (SQL_ARD_TYPE): likewise.
11671         (SQL_AT_add_CONSTRAINT): likewise.
11672         (SQL_ATTR_APP_PARAM_DESC): likewise.
11673         (SQL_ATTR_APP_ROW_DESC): likewise.
11674         (SQL_ATTR_AUTO_IPD): likewise.
11675         (SQL_ATTR_CURSOR_SCROLLABLE): likewise.
11676         (SQL_ATTR_CURSOR_SENSITIVITY): likewise.
11677         (SQL_ATTR_IMP_PARAM_DESC): likewise.
11678         (SQL_ATTR_IMP_ROW_DESC): likewise.
11679         (SQL_ATTR_METADATA_ID): likewise.
11680         (SQL_ATTR_OUTPUT_NTS): likewise.
11681         (SQL_CATALOG_NAME): likewise.
11682         (SQL_CODE_DATE): likewise.
11683         (SQL_CODE_TIME): likewise.
11684         (SQL_CODE_TIMESTAMP): likewise.
11685         (SQL_COLLATION_SEQ): likewise.
11686         (SQL_CURSOR_SENSITIVITY): likewise.
11687         (SQL_DATE_LEN): likewise.
11688         (SQL_DATETIME): likewise.
11689         (SQL_DEFAULT): likewise.
11690         (SQL_DESC_ALLOC_AUTO): likewise.
11691         (SQL_DESC_ALLOC_TYPE): likewise.
11692         (SQL_DESC_ALLOC_USER): likewise.
11693         (SQL_DESC_COUNT): likewise.
11694         (SQL_DESC_DATA_PTR): likewise.
11695         (SQL_DESC_DATETIME_INTERVAL_CODE): likewise.
11696         (SQL_DESC_INDICATOR_PTR): likewise.
11697         (SQL_DESC_LENGTH): likewise.
11698         (SQL_DESC_NAME): likewise.
11699         (SQL_DESC_NULLABLE): likewise.
11700         (SQL_DESC_OCTET_LENGTH): likewise.
11701         (SQL_DESC_OCTET_LENGTH_PTR): likewise.
11702         (SQL_DESC_PRECISION): likewise.
11703         (SQL_DESC_SCALE): likewise.
11704         (SQL_DESC_TYPE): likewise.
11705         (SQL_DESC_UNNAMED): likewise.
11706         (SQL_DESCRIBE_PARAMETER): likewise.
11707         (SQL_DIAG_ALTER_DOMAIN): likewise.
11708         (SQL_DIAG_ALTER_TABLE): likewise.
11709         (SQL_DIAG_CALL): likewise.
11710         (SQL_DIAG_CLASS_ORIGIN): likewise.
11711         (SQL_DIAG_CONNECTION_NAME): likewise.
11712         (SQL_DIAG_CREATE_ASSERTION): likewise.
11713         (SQL_DIAG_CREATE_CHARACTER_SET): likewise.
11714         (SQL_DIAG_CREATE_COLLATION): likewise.
11715         (SQL_DIAG_CREATE_DOMAIN): likewise.
11716         (SQL_DIAG_CREATE_INDEX): likewise.
11717         (SQL_DIAG_CREATE_SCHEMA): likewise.
11718         (SQL_DIAG_CREATE_TABLE): likewise.
11719         (SQL_DIAG_CREATE_TRANSLATION): likewise.
11720         (SQL_DIAG_CREATE_VIEW): likewise.
11721         (SQL_DIAG_DELETE_WHERE): likewise.
11722         (SQL_DIAG_DROP_ASSERTION): likewise.
11723         (SQL_DIAG_DROP_CHARACTER_SET): likewise.
11724         (SQL_DIAG_DROP_COLLATION): likewise.
11725         (SQL_DIAG_DROP_DOMAIN): likewise.
11726         (SQL_DIAG_DROP_INDEX): likewise.
11727         (SQL_DIAG_DROP_SCHEMA): likewise.
11728         (SQL_DIAG_DROP_TABLE): likewise.
11729         (SQL_DIAG_DROP_TRANSLATION): likewise.
11730         (SQL_DIAG_DROP_VIEW): likewise.
11731         (SQL_DIAG_DYNAMIC_DELETE_CURSOR): likewise.
11732         (SQL_DIAG_DYNAMIC_FUNCTION): likewise.
11733         (SQL_DIAG_DYNAMIC_FUNCTION_CODE): likewise.
11734         (SQL_DIAG_DYNAMIC_UPDATE_CURSOR): likewise.
11735         (SQL_DIAG_GRANT): likewise.
11736         (SQL_DIAG_INSERT): likewise.
11737         (SQL_DIAG_MESSAGE_TEXT): likewise.
11738         (SQL_DIAG_NATIVE): likewise.
11739         (SQL_DIAG_NUMBER): likewise.
11740         (SQL_DIAG_RETURNCODE): likewise.
11741         (SQL_DIAG_REVOKE): likewise.
11742         (SQL_DIAG_ROW_COUNT): likewise.
11743         (SQL_DIAG_SELECT_CURSOR): likewise.
11744         (SQL_DIAG_SERVER_NAME): likewise.
11745         (SQL_DIAG_SQLSTATE): likewise.
11746         (SQL_DIAG_SUBCLASS_ORIGIN): likewise.
11747         (SQL_DIAG_UNKNOWN_STATEMENT): likewise.
11748         (SQL_DIAG_UPDATE_WHERE): likewise.
11749         (SQL_FALSE): likewise.
11750         (SQL_FETCH_ABSOLUTE): likewise.
11751         (SQL_FETCH_LAST): likewise.
11752         (SQL_FETCH_PRIOR): likewise.
11753         (SQL_FETCH_RELATIVE): likewise.
11754         (SQL_HANDLE_DBC): likewise.
11755         (SQL_HANDLE_DESC): likewise.
11756         (SQL_HANDLE_ENV): likewise.
11757         (SQL_HANDLE_STMT): likewise.
11758         (SQL_INSENSITIVE): likewise.
11759         (SQL_INTEGRITY): likewise.
11760         (SQL_MAX_CATALOG_NAME_LEN): likewise.
11761         (SQL_MAX_CONCURRENT_ACTIVITIES): likewise.
11762         (SQL_MAX_DRIVER_CONNECTIONS): likewise.
11763         (SQL_MAX_IDENTIFIER_LEN): likewise.
11764         (SQL_MAX_SCHEMA_NAME_LEN): likewise.
11765         (SQL_MAXIMUM_CATALOG_NAME_LENGTH): likewise.
11766         (SQL_MAXIMUM_COLUMN_NAME_LENGTH): likewise.
11767         (SQL_MAXIMUM_COLUMNS_IN_GROUP_BY): likewise.
11768         (SQL_MAXIMUM_COLUMNS_IN_INDEX): likewise.
11769         (SQL_MAXIMUM_COLUMNS_IN_ORDER_BY): likewise.
11770         (SQL_MAXIMUM_COLUMNS_IN_SELECT): likewise.
11771         (SQL_MAXIMUM_CONCURRENT_ACTIVITIES): likewise.
11772         (SQL_MAXIMUM_CURSOR_NAME_LENGTH): likewise.
11773         (SQL_MAXIMUM_DRIVER_CONNECTIONS): likewise.
11774         (SQL_MAXIMUM_IDENTIFIER_LENGTH): likewise.
11775         (SQL_MAXIMUM_INDEX_SIZE): likewise.
11776         (SQL_MAXIMUM_ROW_SIZE): likewise.
11777         (SQL_MAXIMUM_SCHEMA_NAME_LENGTH): likewise.
11778         (SQL_MAXIMUM_STATEMENT_LENGTH): likewise.
11779         (SQL_MAXIMUM_TABLES_IN_SELECT): likewise.
11780         (SQL_MAXIMUM_USER_NAME_LENGTH): likewise.
11781         (SQL_NAMED): likewise.
11782         (SQL_NONSCROLLABLE): likewise.
11783         (SQL_NTSL): likewise.
11784         (SQL_NULL_HANDLE): likewise.
11785         (SQL_NULL_HDESC): likewise.
11786         (SQL_OUTER_JOIN_CAPABILITIES): likewise.
11787         (SQL_PRED_BASIC): likewise.
11788         (SQL_PRED_CHAR): likewise.
11789         (SQL_PRED_NONE): likewise.
11790         (SQL_ROW_IDENTIFIER): likewise.
11791         (SQL_SCROLLABLE): likewise.
11792         (SQL_SENSITIVE): likewise.
11793         (SQL_SUCCEEDED(rc)): likewise.
11794         (SQL_TIME_LEN): likewise.
11795         (SQL_TIMESTAMP_LEN): likewise.
11796         (SQL_TRANSACTION_CAPABLE): likewise.
11797         (SQL_TRANSACTION_ISOLATION_OPTION): likewise.
11798         (SQL_TRANSACTION_READ_COMMITTED): likewise.
11799         (SQL_TRANSACTION_READ_UNCOMMITTED): likewise.
11800         (SQL_TRANSACTION_REPEATABLE_READ): likewise.
11801         (SQL_TRANSACTION_SERIALIZABLE): likewise.
11802         (SQL_TYPE_DATE): likewise.
11803         (SQL_TYPE_TIME): likewise.
11804         (SQL_TYPE_TIMESTAMP): likewise.
11805         (SQL_UNKNOWN_TYPE): likewise.
11806         (SQL_UNNAMED): likewise.
11807         (SQL_UNSPECIFIED): likewise.
11808         (SQL_XOPEN_CLI_YEAR): likewise.
11809         (SQLAllocConnect): add comment marking as deperecated.
11810         (SQLAllocEnv): likewise.
11811         (SQLAllocStmt): likewise.
11812         (SQLFreeConnect): likewise.
11813         (SQLFreeEnv): likewise.
11814         (SQLGetConnectOption): likewise.
11815         (SQLGetStmtOption): likewise.
11816
11817         * include/sqlext.h (#include <sqlucode.h>): add directive.
11818         (SQLSetScrollOptions): non-core function, move prototype from sql.h.
11819         (SQLColAttributes): likewise.
11820         (SQLBulkOperations): add function prototype.
11821         (SQLAllocHandleStd): likewise
11822         (TraceReturn): add Trace API prototype.
11823         (TraceVersion): likewise.
11824         (ODBCGetTryWaitValue):likewise.
11825         (ODBCSetTryWaitValue): likewise.
11826         (SQL_LOCK_RECORD): correct function macro.
11827         (SQL_REFRESH_RECORD): likewise.
11828         (SQLINTENGER and SQLUINTEGER): replace with SQLLEN and SQLULEN for
11829         _WIN64 compatability.
11830         move defines for non-core functions from sql.h to sqlext.h (refer
11831         changes for sql.h)
11832         (SQL_ACTIVE_ENVIRONMENTS): new ODBC3.x define
11833         (SQL_AD_ADD_CONSTRAINT_DEFERRABLE): likewise.
11834         (SQL_AD_ADD_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11835         (SQL_AD_ADD_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11836         (SQL_AD_ADD_CONSTRAINT_NON_DEFERRABLE): likewise.
11837         (SQL_AD_ADD_DOMAIN_CONSTRAINT): likewise.
11838         (SQL_AD_ADD_DOMAIN_DEFAULT): likewise.
11839         (SQL_AD_CONSTRAINT_NAME_DEFINITION): likewise.
11840         (SQL_AD_DROP_DOMAIN_CONSTRAINT): likewise.
11841         (SQL_AD_DROP_DOMAIN_DEFAULT): likewise.
11842         (SQL_AF_ALL): likewise.
11843         (SQL_AF_AVG): likewise.
11844         (SQL_AF_COUNT): likewise.
11845         (SQL_AF_DISTINCT): likewise.
11846         (SQL_AF_MAX): likewise.
11847         (SQL_AF_MIN): likewise.
11848         (SQL_AF_SUM): likewise.
11849         (SQL_AGGREGATE_FUNCTIONS): likewise.
11850         (SQL_ALL_CATALOGS): likewise.
11851         (SQL_ALL_SCHEMAS): likewise.
11852         (SQL_ALL_TABLE_TYPES): likewise.
11853         (SQL_ALTER_DOMAIN): likewise.
11854         (SQL_AM_CONNECTION): likewise.
11855         (SQL_AM_NONE): likewise.
11856         (SQL_AM_STATEMENT): likewise.
11857         (SQL_API_ODBC3_ALL_FUNCTIONS): likewise.
11858         (SQL_API_ODBC3_ALL_FUNCTIONS_SIZE): likewise.
11859         (SQL_API_SQLALLOCHANDLESTD): likewise.
11860         (SQL_API_SQLBULKOPERATIONS): likewise.
11861         (SQL_ASYNC_MODE): likewise.
11862         (SQL_AT_ADD_COLUMN_COLLATION): likewise.
11863         (SQL_AT_ADD_COLUMN_DEFAULT): likewise.
11864         (SQL_AT_ADD_COLUMN_SINGLE): likewise.
11865         (SQL_AT_ADD_TABLE_CONSTRAINT): likewise.
11866         (SQL_AT_CONSTRAINT_DEFERRABLE): likewise.
11867         (SQL_AT_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11868         (SQL_AT_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11869         (SQL_AT_CONSTRAINT_NAME_DEFINITION): likewise.
11870         (SQL_AT_CONSTRAINT_NON_DEFERRABLE): likewise.
11871         (SQL_AT_DROP_COLUMN_CASCADE): likewise.
11872         (SQL_AT_DROP_COLUMN_DEFAULT): likewise.
11873         (SQL_AT_DROP_COLUMN_RESTRICT): likewise.
11874         (SQL_AT_DROP_TABLE_CONSTRAINT_CASCADE): likewise.
11875         (SQL_AT_DROP_TABLE_CONSTRAINT_RESTRICT): likewise.
11876         (SQL_AT_SET_COLUMN_DEFAULT): likewise.
11877         (SQL_ATTR_ACCESS_MODE): likewise.
11878         (SQL_ATTR_ASYNC_ENABLE): likewise.
11879         (SQL_ATTR_AUTOCOMMIT): likewise.
11880         (SQL_ATTR_CONCURRENCY): likewise.
11881         (SQL_ATTR_CONNECTION_POOLING): likewise.
11882         (SQL_ATTR_CONNECTION_TIMEOUT): likewise.
11883         (SQL_ATTR_CP_MATCH): likewise.
11884         (SQL_ATTR_CURRENT_CATALOG): likewise.
11885         (SQL_ATTR_CURSOR_TYPE): likewise.
11886         (SQL_ATTR_DISCONNECT_BEHAVIOR): likewise.
11887         (SQL_ATTR_ENABLE_AUTO_IPD): likewise.
11888         (SQL_ATTR_ENLIST_IN_DTC): likewise.
11889         (SQL_ATTR_ENLIST_IN_XA): likewise.
11890         (SQL_ATTR_FETCH_BOOKMARK_PTR): likewise.
11891         (SQL_ATTR_KEYSET_SIZE): likewise.
11892         (SQL_ATTR_LOGIN_TIMEOUT): likewise.
11893         (SQL_ATTR_MAX_LENGTH): likewise.
11894         (SQL_ATTR_MAX_ROWS): likewise.
11895         (SQL_ATTR_NOSCAN): likewise.
11896         (SQL_ATTR_ODBC_CURSORS): likewise.
11897         (SQL_ATTR_ODBC_VERSION): likewise.
11898         (SQL_ATTR_PACKET_SIZE): likewise.
11899         (SQL_ATTR_PARAM_BIND_OFFSET_PTR): likewise.
11900         (SQL_ATTR_PARAM_BIND_TYPE): likewise.
11901         (SQL_ATTR_PARAM_OPERATION_PTR): likewise.
11902         (SQL_ATTR_PARAM_STATUS_PTR): likewise.
11903         (SQL_ATTR_PARAMS_PROCESSED_PTR): likewise.
11904         (SQL_ATTR_PARAMSET_SIZE): likewise.
11905         (SQL_ATTR_QUERY_TIMEOUT): likewise.
11906         (SQL_ATTR_QUIET_MODE): likewise.
11907         (SQL_ATTR_RETRIEVE_DATA): likewise.
11908         (SQL_ATTR_ROW_ARRAY_SIZE): likewise.
11909         (SQL_ATTR_ROW_BIND_OFFSET_PTR): likewise.
11910         (SQL_ATTR_ROW_BIND_TYPE): likewise.
11911         (SQL_ATTR_ROW_NUMBER): likewise.
11912         (SQL_ATTR_ROW_OPERATION_PTR): likewise.
11913         (SQL_ATTR_ROW_STATUS_PTR): likewise.
11914         (SQL_ATTR_ROWS_FETCHED_PTR): likewise.
11915         (SQL_ATTR_SIMULATE_CURSOR): likewise.
11916         (SQL_ATTR_TRACE): likewise.
11917         (SQL_ATTR_TRACEFILE): likewise.
11918         (SQL_ATTR_TRANSLATE_LIB): likewise.
11919         (SQL_ATTR_TRANSLATE_OPTION): likewise.
11920         (SQL_ATTR_TXN_ISOLATION): likewise.
11921         (SQL_ATTR_USE_BOOKMARKS): likewise.
11922         (SQL_BATCH_ROW_COUNT): likewise.
11923         (SQL_BATCH_SUPPORT): likewise.
11924         (SQL_BRC_EXPLICIT): likewise.
11925         (SQL_BRC_PROCEDURES): likewise.
11926         (SQL_BRC_ROLLED_UP): likewise.
11927         (SQL_BS_ROW_COUNT_EXPLICIT): likewise.
11928         (SQL_BS_ROW_COUNT_PROC): likewise.
11929         (SQL_BS_SELECT_EXPLICIT): likewise.
11930         (SQL_BS_SELECT_PROC): likewise.
11931         (SQL_C_INTERVAL_DAY): likewise.
11932         (SQL_C_INTERVAL_DAY_TO_HOUR): likewise.
11933         (SQL_C_INTERVAL_DAY_TO_MINUTE): likewise.
11934         (SQL_C_INTERVAL_DAY_TO_SECOND): likewise.
11935         (SQL_C_INTERVAL_HOUR): likewise.
11936         (SQL_C_INTERVAL_HOUR_TO_MINUTE): likewise.
11937         (SQL_C_INTERVAL_HOUR_TO_SECOND): likewise.
11938         (SQL_C_INTERVAL_MINUTE): likewise.
11939         (SQL_C_INTERVAL_MINUTE_TO_SECOND): likewise.
11940         (SQL_C_INTERVAL_MONTH): likewise.
11941         (SQL_C_INTERVAL_SECOND): likewise.
11942         (SQL_C_INTERVAL_YEAR): likewise.
11943         (SQL_C_INTERVAL_YEAR_TO_MONTH): likewise.
11944         (SQL_C_NUMERIC): likewise.
11945         (SQL_C_SBIGINT): likewise.
11946         (SQL_C_TYPE_DATE): likewise.
11947         (SQL_C_TYPE_TIME): likewise.
11948         (SQL_C_TYPE_TIMESTAMP): likewise.
11949         (SQL_C_UBIGINT): likewise.
11950         (SQL_C_VARBOOKMARK): likewise.
11951         (SQL_CA_CONSTRAINT_DEFERRABLE): likewise.
11952         (SQL_CA_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11953         (SQL_CA_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11954         (SQL_CA_CONSTRAINT_NON_DEFERRABLE): likewise.
11955         (SQL_CA_CREATE_ASSERTION): likewise.
11956         (SQL_CA1_ABSOLUTE): likewise.
11957         (SQL_CA1_BOOKMARK): likewise.
11958         (SQL_CA1_BULK_ADD): likewise.
11959         (SQL_CA1_BULK_DELETE_BY_BOOKMARK): likewise.
11960         (SQL_CA1_BULK_FETCH_BY_BOOKMARK): likewise.
11961         (SQL_CA1_BULK_UPDATE_BY_BOOKMARK): likewise.
11962         (SQL_CA1_LOCK_EXCLUSIVE): likewise.
11963         (SQL_CA1_LOCK_NO_CHANGE): likewise.
11964         (SQL_CA1_LOCK_UNLOCK): likewise.
11965         (SQL_CA1_NEXT): likewise.
11966         (SQL_CA1_POS_DELETE): likewise.
11967         (SQL_CA1_POS_POSITION): likewise.
11968         (SQL_CA1_POS_REFRESH): likewise.
11969         (SQL_CA1_POS_UPDATE): likewise.
11970         (SQL_CA1_POSITIONED_DELETE): likewise.
11971         (SQL_CA1_POSITIONED_UPDATE): likewise.
11972         (SQL_CA1_RELATIVE): likewise.
11973         (SQL_CA1_SELECT_FOR_UPDATE): likewise.
11974         (SQL_CA2_CRC_APPROXIMATE): likewise.
11975         (SQL_CA2_CRC_EXACT): likewise.
11976         (SQL_CA2_LOCK_CONCURRENCY): likewise.
11977         (SQL_CA2_MAX_ROWS_AFFECTS_ALL): likewise.
11978         (SQL_CA2_MAX_ROWS_CATALOG): likewise.
11979         (SQL_CA2_MAX_ROWS_DELETE): likewise.
11980         (SQL_CA2_MAX_ROWS_INSERT): likewise.
11981         (SQL_CA2_MAX_ROWS_SELECT): likewise.
11982         (SQL_CA2_MAX_ROWS_UPDATE): likewise.
11983         (SQL_CA2_OPT_ROWVER_CONCURRENCY): likewise.
11984         (SQL_CA2_OPT_VALUES_CONCURRENCY): likewise.
11985         (SQL_CA2_READ_ONLY_CONCURRENCY): likewise.
11986         (SQL_CA2_SENSITIVITY_ADDITIONS): likewise.
11987         (SQL_CA2_SENSITIVITY_DELETIONS): likewise.
11988         (SQL_CA2_SENSITIVITY_UPDATES): likewise.
11989         (SQL_CA2_SIMULATE_NON_UNIQUE): likewise.
11990         (SQL_CA2_SIMULATE_TRY_UNIQUE): likewise.
11991         (SQL_CA2_SIMULATE_UNIQUE): likewise.
11992         (SQL_CATALOG_LOCATION): likewise.
11993         (SQL_CATALOG_NAME_SEPARATOR): likewise.
11994         (SQL_CATALOG_TERM): likewise.
11995         (SQL_CATALOG_USAGE): likewise.
11996         (SQL_CCOL_CREATE_COLLATION): likewise.
11997         (SQL_CCS_COLLATE_CLAUSE): likewise.
11998         (SQL_CCS_CREATE_CHARACTER_SET): likewise.
11999         (SQL_CCS_LIMITED_COLLATION): likewise.
12000         (SQL_CDO_COLLATION): likewise.
12001         (SQL_CDO_CONSTRAINT): likewise.
12002         (SQL_CDO_CONSTRAINT_DEFERRABLE): likewise.
12003         (SQL_CDO_CONSTRAINT_INITIALLY_DEFERRED): likewise.
12004         (SQL_CDO_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
12005         (SQL_CDO_CONSTRAINT_NAME_DEFINITION): likewise.
12006         (SQL_CDO_CONSTRAINT_NON_DEFERRABLE): likewise.
12007         (SQL_CDO_CREATE_DOMAIN): likewise.
12008         (SQL_CDO_DEFAULT): likewise.
12009         (SQL_CL_END): likewise.
12010         (SQL_CL_START): likewise.
12011         (SQL_COL_PRED_BASIC): likewise.
12012         (SQL_COL_PRED_CHAR): likewise.
12013         (SQL_COLUMN_DRIVER_START): likewise.
12014         (SQL_COLUMN_IGNORE): likewise.
12015         (SQL_COLUMN_NUMBER_UNKNOWN): likewise.
12016         (SQL_CONVERT_GUID): likewise.
12017         (SQL_CONVERT_INTERVAL_DAY_TIME): likewise.
12018         (SQL_CONVERT_INTERVAL_YEAR_MONTH): likewise.
12019         (SQL_CONVERT_WCHAR): likewise.
12020         (SQL_CONVERT_WLONGVARCHAR): likewise.
12021         (SQL_CONVERT_WVARCHAR): likewise.
12022         (SQL_CP_DEFAULT): likewise.
12023         (SQL_CP_MATCH_DEFAULT): likewise.
12024         (SQL_CP_OFF): likewise.
12025         (SQL_CP_ONE_PER_DRIVER): likewise.
12026         (SQL_CP_ONE_PER_HENV): likewise.
12027         (SQL_CP_RELAXED_MATCH): likewise.
12028         (SQL_CP_STRICT_MATCH): likewise.
12029         (SQL_CREATE_ASSERTION): likewise.
12030         (SQL_CREATE_CHARACTER_SET): likewise.
12031         (SQL_CREATE_COLLATION): likewise.
12032         (SQL_CREATE_DOMAIN): likewise.
12033         (SQL_CREATE_SCHEMA): likewise.
12034         (SQL_CREATE_TABLE): likewise.
12035         (SQL_CREATE_TRANSLATION): likewise.
12036         (SQL_CREATE_VIEW): likewise.
12037         (SQL_CS_AUTHORIZATION): likewise.
12038         (SQL_CS_CREATE_SCHEMA): likewise.
12039         (SQL_CS_DEFAULT_CHARACTER_SET): likewise.
12040         (SQL_CT_COLUMN_COLLATION): likewise.
12041         (SQL_CT_COLUMN_CONSTRAINT): likewise.
12042         (SQL_CT_COLUMN_DEFAULT): likewise.
12043         (SQL_CT_COMMIT_DELETE): likewise.
12044         (SQL_CT_COMMIT_PRESERVE): likewise.
12045         (SQL_CT_CONSTRAINT_DEFERRABLE): likewise.
12046         (SQL_CT_CONSTRAINT_INITIALLY_DEFERRED): likewise.
12047         (SQL_CT_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
12048         (SQL_CT_CONSTRAINT_NAME_DEFINITION): likewise.
12049         (SQL_CT_CONSTRAINT_NON_DEFERRABLE): likewise.
12050         (SQL_CT_CREATE_TABLE): likewise.
12051         (SQL_CT_GLOBAL_TEMPORARY): likewise.
12052         (SQL_CT_LOCAL_TEMPORARY): likewise.
12053         (SQL_CT_TABLE_CONSTRAINT): likewise.
12054         (SQL_CTR_CREATE_TRANSLATION): likewise.
12055         (SQL_CU_DML_STATEMENTS): likewise.
12056         (SQL_CU_INDEX_DEFINITION): likewise.
12057         (SQL_CU_PRIVILEGE_DEFINITION): likewise.
12058         (SQL_CU_PROCEDURE_INVOCATION): likewise.
12059         (SQL_CU_TABLE_DEFINITION): likewise.
12060         (SQL_CVT_GUID): likewise.
12061         (SQL_CVT_INTERVAL_DAY_TIME): likewise.
12062         (SQL_CVT_INTERVAL_YEAR_MONTH): likewise.
12063         (SQL_CVT_WCHAR): likewise.
12064         (SQL_CVT_WLONGVARCHAR): likewise.
12065         (SQL_CVT_WVARCHAR): likewise.
12066         (SQL_DA_DROP_ASSERTION): likewise.
12067         (SQL_DATETIME_LITERALS): likewise.
12068         (SQL_DB_DEFAULT): likewise.
12069         (SQL_DB_DISCONNECT): likewise.
12070         (SQL_DB_RETURN_TO_POOL): likewise.
12071         (SQL_DC_DROP_COLLATION): likewise.
12072         (SQL_DCS_DROP_CHARACTER_SET): likewise.
12073         (SQL_DD_CASCADE): likewise.
12074         (SQL_DD_DROP_DOMAIN): likewise.
12075         (SQL_DD_RESTRICT): likewise.
12076         (SQL_DDL_INDEX): likewise.
12077         (SQL_DELETE_BY_BOOKMARK): likewise.
12078         (SQL_DESC_ARRAY_SIZE): likewise.
12079         (SQL_DESC_ARRAY_STATUS_PTR): likewise.
12080         (SQL_DESC_AUTO_UNIQUE_VALUE): likewise.
12081         (SQL_DESC_BASE_COLUMN_NAME): likewise.
12082         (SQL_DESC_BASE_TABLE_NAME): likewise.
12083         (SQL_DESC_BIND_OFFSET_PTR): likewise.
12084         (SQL_DESC_BIND_TYPE): likewise.
12085         (SQL_DESC_CASE_SENSITIVE): likewise.
12086         (SQL_DESC_CATALOG_NAME): likewise.
12087         (SQL_DESC_CONCISE_TYPE): likewise.
12088         (SQL_DESC_DATETIME_INTERVAL_PRECISION): likewise.
12089         (SQL_DESC_DISPLAY_SIZE): likewise.
12090         (SQL_DESC_FIXED_PREC_SCALE): likewise.
12091         (SQL_DESC_LABEL): likewise.
12092         (SQL_DESC_LITERAL_PREFIX): likewise.
12093         (SQL_DESC_LITERAL_SUFFIX): likewise.
12094         (SQL_DESC_LOCAL_TYPE_NAME): likewise.
12095         (SQL_DESC_MAXIMUM_SCALE): likewise.
12096         (SQL_DESC_MINIMUM_SCALE): likewise.
12097         (SQL_DESC_NUM_PREC_RADIX): likewise.
12098         (SQL_DESC_PARAMETER_TYPE): likewise.
12099         (SQL_DESC_ROWS_PROCESSED_PTR): likewise.
12100         (SQL_DESC_SCHEMA_NAME): likewise.
12101         (SQL_DESC_SEARCHABLE): likewise.
12102         (SQL_DESC_TABLE_NAME): likewise.
12103         (SQL_DESC_TYPE_NAME): likewise.
12104         (SQL_DESC_UNSIGNED): likewise.
12105         (SQL_DESC_UPDATABLE): likewise.
12106         (SQL_DI_CREATE_INDEX): likewise.
12107         (SQL_DI_DROP_INDEX): likewise.
12108         (SQL_DIAG_COLUMN_NUMBER): likewise.
12109         (SQL_DIAG_CURSOR_ROW_COUNT): likewise.
12110         (SQL_DIAG_ROW_NUMBER): likewise.
12111         (SQL_DL_SQL92_DATE): likewise.
12112         (SQL_DL_SQL92_INTERVAL_DAY): likewise.
12113         (SQL_DL_SQL92_INTERVAL_DAY_TO_HOUR): likewise.
12114         (SQL_DL_SQL92_INTERVAL_DAY_TO_MINUTE): likewise.
12115         (SQL_DL_SQL92_INTERVAL_DAY_TO_SECOND): likewise.
12116         (SQL_DL_SQL92_INTERVAL_HOUR): likewise.
12117         (SQL_DL_SQL92_INTERVAL_HOUR_TO_MINUTE): likewise.
12118         (SQL_DL_SQL92_INTERVAL_HOUR_TO_SECOND): likewise.
12119         (SQL_DL_SQL92_INTERVAL_MINUTE): likewise.
12120         (SQL_DL_SQL92_INTERVAL_MINUTE_TO_SECOND): likewise.
12121         (SQL_DL_SQL92_INTERVAL_MONTH): likewise.
12122         (SQL_DL_SQL92_INTERVAL_SECOND): likewise.
12123         (SQL_DL_SQL92_INTERVAL_YEAR): likewise.
12124         (SQL_DL_SQL92_INTERVAL_YEAR_TO_MONTH): likewise.
12125         (SQL_DL_SQL92_TIME): likewise.
12126         (SQL_DL_SQL92_TIMESTAMP): likewise.
12127         (SQL_DM_VER): likewise.
12128         (SQL_DRIVER_HDESC): likewise.
12129         (SQL_DROP_ASSERTION): likewise.
12130         (SQL_DROP_CHARACTER_SET): likewise.
12131         (SQL_DROP_COLLATION): likewise.
12132         (SQL_DROP_DOMAIN): likewise.
12133         (SQL_DROP_SCHEMA): likewise.
12134         (SQL_DROP_TABLE): likewise.
12135         (SQL_DROP_TRANSLATION): likewise.
12136         (SQL_DROP_VIEW): likewise.
12137         (SQL_DS_CASCADE): likewise.
12138         (SQL_DS_DROP_SCHEMA): likewise.
12139         (SQL_DS_RESTRICT): likewise.
12140         (SQL_DT_CASCADE): likewise.
12141         (SQL_DT_DROP_TABLE): likewise.
12142         (SQL_DT_RESTRICT): likewise.
12143         (SQL_DTC_DONE): likewise.
12144         (SQL_DTR_DROP_TRANSLATION): likewise.
12145         (SQL_DV_CASCADE): likewise.
12146         (SQL_DV_DROP_VIEW): likewise.
12147         (SQL_DV_RESTRICT): likewise.
12148         (SQL_DYNAMIC_CURSOR_ATTRIBUTES1): likewise.
12149         (SQL_DYNAMIC_CURSOR_ATTRIBUTES2): likewise.
12150         (SQL_EXT_API_LAST): likewise.
12151         (SQL_EXT_API_START): likewise.
12152         (SQL_FETCH_BY_BOOKMARK): likewise.
12153         (SQL_FETCH_FIRST_SYSTEM): likewise.
12154         (SQL_FETCH_FIRST_USER): likewise.
12155         (SQL_FN_CVT_CAST): likewise.
12156         (SQL_FN_STR_BIT_LENGTH): likewise.
12157         (SQL_FN_STR_CHAR_LENGTH): likewise.
12158         (SQL_FN_STR_CHARACTER_LENGTH): likewise.
12159         (SQL_FN_STR_OCTET_LENGTH): likewise.
12160         (SQL_FN_STR_POSITION): likewise.
12161         (SQL_FN_TD_CURRENT_DATE): likewise.
12162         (SQL_FN_TD_CURRENT_TIME): likewise.
12163         (SQL_FN_TD_CURRENT_TIMESTAMP): likewise.
12164         (SQL_FN_TD_EXTRACT): likewise.
12165         (SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES1): likewise.
12166         (SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES2): likewise.
12167         (SQL_FUNC_EXISTS(exists,api)): likewise.
12168         (SQL_GB_COLLATE): likewise.
12169         (SQL_HANDLE_SENV): likewise.
12170         (SQL_IK_ALL): likewise.
12171         (SQL_IK_ASC): likewise.
12172         (SQL_IK_DESC): likewise.
12173         (SQL_IK_NONE): likewise.
12174         (SQL_INDEX_KEYWORDS): likewise.
12175         (SQL_INFO_DRIVER_START): likewise.
12176         (SQL_INFO_LAST): likewise.
12177         (SQL_INFO_SCHEMA_VIEWS): likewise.
12178         (SQL_INITIALLY_DEFERRED): likewise.
12179         (SQL_INITIALLY_IMMEDIATE): likewise.
12180         (SQL_INSERT_STATEMENT): likewise.
12181         (SQL_INTERVAL): likewise.
12182         (SQL_IS_INSERT_LITERALS): likewise.
12183         (SQL_IS_INSERT_SEARCHED): likewise.
12184         (SQL_IS_INTEGER): likewise.
12185         (SQL_IS_POINTER): likewise.
12186         (SQL_IS_SELECT_INTO): likewise.
12187         (SQL_IS_SMALLINT): likewise.
12188         (SQL_IS_UINTEGER): likewise.
12189         (SQL_IS_USMALLINT): likewise.
12190         (SQL_ISV_ASSERTIONS): likewise.
12191         (SQL_ISV_CHARACTER_SETS): likewise.
12192         (SQL_ISV_CHECK_CONSTRAINTS): likewise.
12193         (SQL_ISV_COLLATIONS): likewise.
12194         (SQL_ISV_COLUMN_DOMAIN_USAGE): likewise.
12195         (SQL_ISV_COLUMN_PRIVILEGES): likewise.
12196         (SQL_ISV_COLUMNS): likewise.
12197         (SQL_ISV_CONSTRAINT_COLUMN_USAGE): likewise.
12198         (SQL_ISV_CONSTRAINT_TABLE_USAGE): likewise.
12199         (SQL_ISV_DOMAIN_CONSTRAINTS): likewise.
12200         (SQL_ISV_DOMAINS): likewise.
12201         (SQL_ISV_KEY_COLUMN_USAGE): likewise.
12202         (SQL_ISV_REFERENTIAL_CONSTRAINTS): likewise.
12203         (SQL_ISV_SCHEMATA): likewise.
12204         (SQL_ISV_SQL_LANGUAGES): likewise.
12205         (SQL_ISV_TABLE_CONSTRAINTS): likewise.
12206         (SQL_ISV_TABLE_PRIVILEGES): likewise.
12207         (SQL_ISV_TABLES): likewise.
12208         (SQL_ISV_TRANSLATIONS): likewise.
12209         (SQL_ISV_USAGE_PRIVILEGES): likewise.
12210         (SQL_ISV_VIEW_COLUMN_USAGE): likewise.
12211         (SQL_ISV_VIEW_TABLE_USAGE): likewise.
12212         (SQL_ISV_VIEWS): likewise.
12213         (SQL_KEYSET_CURSOR_ATTRIBUTES1): likewise.
12214         (SQL_KEYSET_CURSOR_ATTRIBUTES2): likewise.
12215         (SQL_MAX_ASYNC_CONCURRENT_STATEMENTS): likewise.
12216         (SQL_NO_COLUMN_NUMBER): likewise.
12217         (SQL_NO_ROW_NUMBER): likewise.
12218         (SQL_NOT_DEFERRABLE): likewise.
12219         (SQL_NUM_EXTENSIONS): likewise.
12220         (SQL_NUM_FUNCTIONS): likewise.
12221         (SQL_ODBC_INTERFACE_CONFORMANCE): likewise.
12222         (SQL_OIC_CORE): likewise.
12223         (SQL_OIC_LEVEL1): likewise.
12224         (SQL_OIC_LEVEL2): likewise.
12225         (SQL_OV_ODBC2): likewise.
12226         (SQL_OV_ODBC3): likewise.
12227         (SQL_PARAM_ARRAY_ROW_COUNTS): likewise.
12228         (SQL_PARAM_ARRAY_SELECTS): likewise.
12229         (SQL_PARAM_BIND_BY_COLUMN): likewise.
12230         (SQL_PARAM_BIND_TYPE_DEFAULT): likewise.
12231         (SQL_PARAM_DIAG_UNAVAILABLE): likewise.
12232         (SQL_PARAM_ERROR): likewise.
12233         (SQL_PARAM_IGNORE): likewise.
12234         (SQL_PARAM_PROCEED): likewise.
12235         (SQL_PARAM_SUCCESS): likewise.
12236         (SQL_PARAM_SUCCESS_WITH_INFO): likewise.
12237         (SQL_PARAM_UNUSED): likewise.
12238         (SQL_PARC_BATCH): likewise.
12239         (SQL_PARC_NO_BATCH): likewise.
12240         (SQL_PAS_BATCH): likewise.
12241         (SQL_PAS_NO_BATCH): likewise.
12242         (SQL_PAS_NO_SELECT): likewise.
12243         (SQL_ROW_IGNORE): likewise.
12244         (SQL_ROW_NUMBER_UNKNOWN): likewise.
12245         (SQL_ROW_PROCEED): likewise.
12246         (SQL_ROW_SUCCESS_WITH_INFO): likewise.
12247         (SQL_SC_FIPS127_2_TRANSITIONAL): likewise.
12248         (SQL_SC_SQL92_ENTRY): likewise.
12249         (SQL_SC_SQL92_FULL): likewise.
12250         (SQL_SC_SQL92_INTERMEDIATE): likewise.
12251         (SQL_SCC_ISO92_CLI): likewise.
12252         (SQL_SCC_XOPEN_CLI_VERSION1): likewise.
12253         (SQL_SCHEMA_TERM): likewise.
12254         (SQL_SCHEMA_USAGE): likewise.
12255         (SQL_SDF_CURRENT_DATE): likewise.
12256         (SQL_SDF_CURRENT_TIME): likewise.
12257         (SQL_SDF_CURRENT_TIMESTAMP): likewise.
12258         (SQL_SFKD_CASCADE): likewise.
12259         (SQL_SFKD_NO_ACTION): likewise.
12260         (SQL_SFKD_SET_DEFAULT): likewise.
12261         (SQL_SFKD_SET_NULL): likewise.
12262         (SQL_SFKU_CASCADE): likewise.
12263         (SQL_SFKU_NO_ACTION): likewise.
12264         (SQL_SFKU_SET_DEFAULT): likewise.
12265         (SQL_SFKU_SET_NULL): likewise.
12266         (SQL_SG_DELETE_TABLE): likewise.
12267         (SQL_SG_INSERT_COLUMN): likewise.
12268         (SQL_SG_INSERT_TABLE): likewise.
12269         (SQL_SG_REFERENCES_COLUMN): likewise.
12270         (SQL_SG_REFERENCES_TABLE): likewise.
12271         (SQL_SG_SELECT_TABLE): likewise.
12272         (SQL_SG_UPDATE_COLUMN): likewise.
12273         (SQL_SG_UPDATE_TABLE): likewise.
12274         (SQL_SG_USAGE_ON_CHARACTER_SET): likewise.
12275         (SQL_SG_USAGE_ON_COLLATION): likewise.
12276         (SQL_SG_USAGE_ON_DOMAIN): likewise.
12277         (SQL_SG_USAGE_ON_TRANSLATION): likewise.
12278         (SQL_SG_WITH_GRANT_OPTION): likewise.
12279         (SQL_SNVF_BIT_LENGTH): likewise.
12280         (SQL_SNVF_CHAR_LENGTH): likewise.
12281         (SQL_SNVF_CHARACTER_LENGTH): likewise.
12282         (SQL_SNVF_EXTRACT): likewise.
12283         (SQL_SNVF_OCTET_LENGTH): likewise.
12284         (SQL_SNVF_POSITION): likewise.
12285         (SQL_SP_BETWEEN): likewise.
12286         (SQL_SP_COMPARISON): likewise.
12287         (SQL_SP_EXISTS): likewise.
12288         (SQL_SP_IN): likewise.
12289         (SQL_SP_ISNOTNULL): likewise.
12290         (SQL_SP_ISNULL): likewise.
12291         (SQL_SP_LIKE): likewise.
12292         (SQL_SP_MATCH_FULL): likewise.
12293         (SQL_SP_MATCH_PARTIAL): likewise.
12294         (SQL_SP_MATCH_UNIQUE_FULL): likewise.
12295         (SQL_SP_MATCH_UNIQUE_PARTIAL): likewise.
12296         (SQL_SP_OVERLAPS): likewise.
12297         (SQL_SP_QUANTIFIED_COMPARISON): likewise.
12298         (SQL_SP_UNIQUE): likewise.
12299         (SQL_SQL_CONFORMANCE): likewise.
12300         (SQL_SQL92_DATETIME_FUNCTIONS): likewise.
12301         (SQL_SQL92_FOREIGN_KEY_DELETE_RULE): likewise.
12302         (SQL_SQL92_FOREIGN_KEY_UPDATE_RULE): likewise.
12303         (SQL_SQL92_GRANT): likewise.
12304         (SQL_SQL92_NUMERIC_VALUE_FUNCTIONS): likewise.
12305         (SQL_SQL92_PREDICATES): likewise.
12306         (SQL_SQL92_RELATIONAL_JOIN_OPERATORS): likewise.
12307         (SQL_SQL92_REVOKE): likewise.
12308         (SQL_SQL92_ROW_VALUE_CONSTRUCTOR): likewise.
12309         (SQL_SQL92_STRING_FUNCTIONS): likewise.
12310         (SQL_SQL92_VALUE_EXPRESSIONS): likewise.
12311         (SQL_SR_CASCADE): likewise.
12312         (SQL_SR_DELETE_TABLE): likewise.
12313         (SQL_SR_GRANT_OPTION_FOR): likewise.
12314         (SQL_SR_INSERT_COLUMN): likewise.
12315         (SQL_SR_INSERT_TABLE): likewise.
12316         (SQL_SR_REFERENCES_COLUMN): likewise.
12317         (SQL_SR_REFERENCES_TABLE): likewise.
12318         (SQL_SR_RESTRICT): likewise.
12319         (SQL_SR_SELECT_TABLE): likewise.
12320         (SQL_SR_UPDATE_COLUMN): likewise.
12321         (SQL_SR_UPDATE_TABLE): likewise.
12322         (SQL_SR_USAGE_ON_CHARACTER_SET): likewise.
12323         (SQL_SR_USAGE_ON_COLLATION): likewise.
12324         (SQL_SR_USAGE_ON_DOMAIN): likewise.
12325         (SQL_SR_USAGE_ON_TRANSLATION): likewise.
12326         (SQL_SRJO_CORRESPONDING_CLAUSE): likewise.
12327         (SQL_SRJO_CROSS_JOIN): likewise.
12328         (SQL_SRJO_EXCEPT_JOIN): likewise.
12329         (SQL_SRJO_FULL_OUTER_JOIN): likewise.
12330         (SQL_SRJO_INNER_JOIN): likewise.
12331         (SQL_SRJO_INTERSECT_JOIN): likewise.
12332         (SQL_SRJO_LEFT_OUTER_JOIN): likewise.
12333         (SQL_SRJO_NATURAL_JOIN): likewise.
12334         (SQL_SRJO_RIGHT_OUTER_JOIN): likewise.
12335         (SQL_SRJO_UNION_JOIN): likewise.
12336         (SQL_SRVC_DEFAULT): likewise.
12337         (SQL_SRVC_NULL): likewise.
12338         (SQL_SRVC_ROW_SUBQUERY): likewise.
12339         (SQL_SRVC_VALUE_EXPRESSION): likewise.
12340         (SQL_SSF_CONVERT): likewise.
12341         (SQL_SSF_LOWER): likewise.
12342         (SQL_SSF_SUBSTRING): likewise.
12343         (SQL_SSF_TRANSLATE): likewise.
12344         (SQL_SSF_TRIM_BOTH): likewise.
12345         (SQL_SSF_TRIM_LEADING): likewise.
12346         (SQL_SSF_TRIM_TRAILING): likewise.
12347         (SQL_SSF_UPPER): likewise.
12348         (SQL_STANDARD_CLI_CONFORMANCE): likewise.
12349         (SQL_STATIC_CURSOR_ATTRIBUTES1): likewise.
12350         (SQL_STATIC_CURSOR_ATTRIBUTES2): likewise.
12351         (SQL_SU_DML_STATEMENTS): likewise.
12352         (SQL_SU_INDEX_DEFINITION): likewise.
12353         (SQL_SU_PRIVILEGE_DEFINITION): likewise.
12354         (SQL_SU_PROCEDURE_INVOCATION): likewise.
12355         (SQL_SU_TABLE_DEFINITION): likewise.
12356         (SQL_SVE_CASE): likewise.
12357         (SQL_SVE_CAST): likewise.
12358         (SQL_SVE_COALESCE): likewise.
12359         (SQL_SVE_NULLIF): likewise.
12360         (SQL_UB_FIXED): likewise.
12361         (SQL_UB_VARIABLE): likewise.
12362         (SQL_UNION_STATEMENT): likewise.
12363         (SQL_UPDATE_BY_BOOKMARK): likewise.
12364         (SQL_US_UNION): likewise.
12365         (SQL_US_UNION_ALL): likewise.
12366         (SQL_DESC_ROWVER): likewise.
12367         (SQL_GUID): likewise.
12368         (SQL_C_GUID): likewise.
12369         (ODBC_STD): likewise.
12370         (SQLAllocHandle): likewise.
12371         (SQLAllocEnv(p)): likewise.
12372         (SQL_YEAR): likewise.
12373         (SQL_MONTH): likewise.
12374         (SQL_DAY): likewise.
12375         (SQL_HOUR): likewise.
12376         (SQL_MINUTE): likewise.
12377         (SQL_SECOND): likewise.
12378         (SQL_YEAR_TO_MONTH): likewise.
12379         (SQL_DAY_TO_HOUR): likewise.
12380         (SQL_DAY_TO_MINUTE): likewise.
12381         (SQL_DAY_TO_SECOND): likewise.
12382         (SQL_HOUR_TO_MINUTE): likewise.
12383         (SQL_HOUR_TO_SECOND): likewise.
12384         (SQL_MINUTE_TO_SECOND): likewise.
12385         (SQL_ATTR_ANSI_APP): likewise.
12386         (SQL_AA_TRUE): likewise.
12387         (SQL_AA_FALSE): likewise.
12388
12389         * include/sqltypes.h (#pragma pack(push,1), #pragma pack(pop)): remove.
12390         (struct tagSQL_YEAR_MONTH): add for ODBC3.x.
12391         (struct tagSQL_DAY_SECOND): likewise.
12392         (struct tagSQL_INTERVAL_STRUCT): likewise.
12393         (struct tagSQL_NUMERIC_STRUCT): likewise.
12394         (struct tagSQLGUID): add for 0DBC3.50.
12395         (enum SQLINTERVAL): add for ODBC3.x.
12396         (SQLWCHAR): add typedef.
12397         (SQLTCHAR): add typedef, conditional on UNICODE.
12398         (SQLLEN): add typedef for _WIN64, define for _WIN32.
12399         (SQLULEN): likewise.
12400         (SQLROWOFFSET): likewise.
12401         (SQLROWCOUNT): likewise.
12402         (SQLTRANSID): likewise.
12403         (SQLSETPOSIROW): likewise.
12404         (SQLHANDLE): add ODBC3.x typedef.
12405         (SQLHDESC): likewise.
12406         (SQLDATE): likewise.
12407         (SQLDECIMAL): likewise.
12408         (SQLDOUBLE): likewise.
12409         (SQLFLOAT): likewise.
12410         (SQLNUMERIC): likewise.
12411         (SQLREAL): likewise.
12412         (SQLTIME): likewise.
12413         (SQLTIMESTAMP): likewise.
12414         (SQLVARCHAR): likewise.
12415         (SQLBIGINT): likewise.
12416         (SQLUBIGINT): likewise.
12417         (SQL_DATE_STRUCT): likewise.
12418         (SQL_TIME_STRUCT): likewise.
12419         (SQL_TIMESTAMP_STRUCT): likewise.
12420         (ODBCINT64): add ODBC3.x define.
12421
12422         * lib/odbc32.def : regenerate.
12423
12424 2001-01-26  Earnie Boyd  <earnie@users.sourceforge.net
12425
12426         * Apply Danny Smith patch 102275
12427         2000-11-05  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12428         * include/objbase.h: (COM_RIGHTS): Add definition.
12429         (tagSTDMSHLFLAGS): add enumeration.
12430         (CoInitializeEx): Add prototypes.
12431         (CoGetStdMarshalEx): ditto.
12432         (CoCreateInstanceEx): ditto.
12433         (CoInitializeSecurity): ditto.
12434         (CoGetCallContext): ditto.
12435         (CoQueryProxyBlanket): ditto.
12436         (CoSetProxyBlanket): ditto.
12437         (CoCopyProxy): ditto.
12438         (CoQueryClientBlanket): ditto.
12439         (CoImpersonateClient): ditto.
12440         (CoRevertToSelf): ditto.
12441         (CoQueryAuthenticationServices): ditto.
12442         (CoSwitchCallContext): ditto.
12443         (CoGetInstanceFromFile): ditto.
12444         (CoGetInstanceFromIStorage): ditto.
12445         * include/objidl.h: (SOLE_AUTHENTICATION_SERVICE): Add structure.
12446         (SOLE_AUTHENTICATION_INFO): ditto.
12447         (EOLE_AUTHENTICATION_CAPABILITIES): Add enumeration.
12448         (COLE_DEFAULT_PRINCIPAL): Add definition.
12449         (COLE_DEFAULT_AUTHINFO): Ditto.
12450         * include/rpcdce.h: (RPC_C_AUTHZ_DEFAULT): Add definition.
12451         (RPC_PROTSEQ_VECTOR) Fix typo.
12452         (RpcRaiseException): add DECLSPEC_NORETURN attribute.
12453         * include/winbase.h: (FreeLibraryAndExitThread): add DECLSPEC_NORETURN
12454         attribute.
12455
12456 2001-01-26  Earnie Boyd  <earnie@users.sourceforge.net>
12457
12458         * lib/msvcp60.def: Apply Danny Smith patch 103321.
12459         2001-01-17  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>.
12460         New file.
12461
12462 2001-01-26  Christopher Faylor  <cgf@cygnus.com>
12463
12464         * include/winnt.h: Add PTOKEN_USER.
12465
12466 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
12467
12468         * include/sqlucode.h: Apply Danny Smith patch 102443
12469         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12470         New file.
12471
12472 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
12473
12474         * lib/odbccp32.def: Apply Danny Smith patch 102442
12475         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12476         New file.
12477
12478 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
12479
12480         * include/odbcinst.h: Apply Danny Smith patch 102441
12481         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12482         New file.
12483
12484 2000-12-25  Christopher Faylor  <cgf@cygnus.com>
12485
12486         * lib/Makefile.in: Don't make "links" to include/w32api directory.
12487
12488 2000-12-20  Corinna Vinschen  <corinna@vinschen.de>
12489
12490         * include/winbase.h: Add prototype for SetSecurityDescriptorControl.
12491
12492 2000-12-11  Christopher Faylor  <cgf@cygnus.com>
12493
12494         * lib/Makefile.in: Install headers and libraries in tooldir.
12495
12496 2000-12-04  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12497
12498         * include/winnls.h: NORM_IGNORE* remove duplicate defines.
12499         SORT_STRINGSORT: ditto.
12500         CMAP*: ditto.
12501         CTRY_*: add new defines.
12502         LGRPID_*: ditto.
12503         LCMAP*: change defines to hex notation.
12504         CALID: change from ULONG to DWORD.
12505         CALTYPE: ditto.
12506         _cpinfoex[AW]: add structure.
12507         FoldString: correct Unicode mappings.
12508         GetCPInfoEx[AW]: add prototypes.
12509         EnumCalendarInfoEx[AW]: ditto.
12510         EnumDateFormatsEx[AW]: ditto.
12511         EnumSystemLanguageGroups[AW]: ditto.
12512         EnumLanguageGroupLocales[AW]: ditto.
12513         EnumUILanguages[AW]: ditto.
12514         GetSystemDefaultUILanguage[AW]: ditto.
12515         GetUserDefaultUILanguage[AW]: ditto.
12516         IsValidLanguageGroup[AW]: ditto.
12517         CALINFO_ENUMPROCEX[AW]: add function pointer typedef
12518         LANGUAGEGROUP_ENUMPROC[AW]: ditto
12519         LANGGROUPLOCALE_ENUMPROC[AW]: ditto
12520         UILANGUAGE_ENUMPROC[AW]: ditto
12521         DATEFMT_ENUMPROCEX[AW]: ditto
12522         LPCURRENCYFMT[AW]: add structure pointer typedef
12523         LPNUMBERFMT[AW]: ditto
12524
12525 2000-12-02  Matt Hargett  <matt@use.net>
12526
12527         * include/winbase.h: Added a define for INVALID_SET_FILE_POINTER, a
12528         possible return code for the SetFilePointer() win32 API call.
12529
12530 2000-11-09  Corinna Vinschen  <corinna@vinschen.de>
12531
12532         * include/winnt.h: Add missing FILE_NAMED_STREAMS define.
12533
12534 2000-11-06  Earnie Boyd  <earnie_boyd@yahoo.com>
12535
12536         * Makefile.in: increment VERSION.
12537         (dist:) Rename to srcdist.  Create new dist target to call
12538         srcdist and bindist targets.
12539         (srcdist:) New target.
12540         (clean-top:) add call to mostlyclean-top and add rm of distribution
12541         tarballs.
12542         * lib/Makefile.in: (uninstall:) modify to remove files from the
12543         new w32api subdirectory and to remove w32api subdirectory.
12544         (xuninstall:) Ditto.
12545         TODO: Add a task to redo the clean targets of Makefile.in
12546
12547 2000-11-03  Christopher Faylor  <cgf@cygnus.com>
12548
12549         * lib/Makefile.in: Install header files in w32api subdirectory.
12550
12551 2000-10-31  Earnie Boyd  <earnie_boyd@yahoo.com>
12552
12553         * CONTRIBUTIONS: New file.
12554         * README: Change the maintained by header.
12555         * TODO: Add a note about checking the TODO.
12556
12557 2000-10-31  Earnie Boyd  <earnie_boyd@yahoo.com>
12558
12559         * Merge in accepted changes from
12560         2000-10-23  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
12561         * include/basetyps.h: add comment for GUID_DEFINED
12562         * include/lm.h: add includes for lmerr.h and lmserver.h
12563         * include/lmcons.h: add W2K typedefs LMSTR, LMCSTR
12564         * include/lmerr.h:  add error codes
12565         * include/lmserver.h: replace LPTSTR with LPWSTR,
12566         LPTCSTR with LPWCSTR in structures and prototypes
12567         * include/lmshare.h: ditto
12568         * include/lmuse.h: ditto
12569         * include/lmstats.h: ditto
12570         * include/oleauto.h: add function prototype SystemTimeToVariantTime
12571         * include/winbase.h: change first argument of CommConfigDialog to const
12572         * include/windowsx.h: add macros  defining FAR versions of
12573         mem and string functions for porting from Win16 code
12574         * include/winioctl.h:  added IOCTL_STORAGE defines
12575         * include/winnetwk.h:  added WNNC_NET flags
12576         * include/winnt.h: add include of <basetsd.h>;
12577         add structs; add pointer typedefs  for TOKEN structs
12578         * include/winsock.h: add guard around BSD-ish typedefs
12579         * include/wtypes.h: new VARENUM enums, new WIN32/WIN64 compat. macros
12580         * include/basetsd.h: new file
12581         * include/raserror.h: ditto
12582         * include/rassapi.h: ditto
12583         * include/ras.h: ditto
12584         comment from Earnie: replaced original ras.h contribution with Danny's
12585         contribution as it is more complete.
12586         * include/rpcndr.h: add default definition for __RPCNDR_H_VERSION__
12587
12588 2000-10-19  Earnie Boyd  <earnie_boyd@yahoo.com>
12589
12590         * Makefile.in: increment VERSION.  Change tar file name for dist and
12591         bindist targets to be more standard.
12592         * config.guess: Update with the currently published file.
12593         * config.sub: ditto.
12594         * configure.in: Use value of build_alias instead of testing for
12595         directory names to set BUILDENV.
12596         * configure: ditto.
12597         * lib/Makefile.in: Change the name of the targets install,
12598         install-headers and install-libraries to xinstall, xinstall-headers
12599         and xinstall-libraries for system target specified installation.
12600         Recreate targets install, install-headers and install-libraries for
12601         exec-prefix specified installation.  Ditto for the uninstall targets of
12602         the same name.
12603
12604 2000-10-09  Corinna Vinschen  <corinna@vinschen.de>
12605
12606         * include/iprtrmib.h: Further layout changes according to standard.
12607         * include/iptypes.h: Ditto.
12608         * include/ntdef.h: Ditto.
12609         * include/ntsecapi.h: Ditto.
12610         * include/subauth.h: Ditto.
12611
12612 2000-10-09  Corinna Vinschen  <corinna@vinschen.de>
12613
12614         * include/ntsecapi.h: Fix PLSA_UNICODE_STRING define.
12615
12616 2000-10-08  Corinna Vinschen  <corinna@vinschen.de>
12617
12618         * include/ntsecapi.h: New file.
12619         * include/subauth.h: Ditto.
12620         * include/ipexport.h: Fix global header define not to contain
12621         trailing underscore. Change layout according to standard.
12622         * include/iphlpapi.h: Ditto.
12623         * include/ipifcons.h: Ditto.
12624         * include/iprtrmib.h: Ditto.
12625         * include/iptypes.h: Ditto.
12626         * include/ntdef.h: Ditto. Define conditional datatypes dependent
12627         of inclusion of ntsecapi.h and subauth.h.
12628         * lib/secur32.def: New stub for secur32.dll.
12629
12630 2000-10-02  Corinna Vinschen  <corinna@vinschen.de>
12631
12632         * include/ras.h: New file.
12633         * lib/rasapi32.def: Add symbols for RasEnumDevicesA and
12634         RasEnumDevicesW.
12635
12636 2000-10-02  Corinna Vinschen  <corinna@vinschen.de>
12637
12638         * include/ntdef.h: Add define for NTAPI.
12639
12640 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12641
12642         * include/ipexport.h: Add missing `extern "C"' directives.
12643         * include/iphlpapi.h: Ditto.
12644         * include/iprtrmib.h: Ditto.
12645         * include/iptypes.h: Ditto.
12646
12647 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12648
12649         * include/ipifcons.h: New header file.
12650         * include/iprtrmib.h: Move operational states to ipifcons.h.
12651         * include/iphlpapi.h: Add missing parameters to GetIfTable()
12652         declaration.
12653
12654 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12655
12656         * include/iprtrmib.h: Add missing MIB_IF_OPER_STATUS_xxx definitions.
12657
12658 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12659
12660         * lib/iphlpapi.def: New stub for iphlpapi.dll.
12661         * include/iptypes.h: New header file.
12662         * include/ipexport.h: Ditto.
12663         * include/iphlpapi.h: Ditto.
12664         * include/iprtrmib.h: Ditto.
12665
12666 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
12667
12668         * include/ntdef.h: New file.
12669
12670 2000-08-18  Corinna Vinschen  <corinna@vinschen.de>
12671
12672         * include/winnt.h:Add enums for TokenRestrictedSids and TokenSessionId
12673         to TOKEN_INFORMATION_CLASS type.
12674         Add QUOTA_LIMITS type.
12675
12676 2000-08-08  Corinna Vinschen  <corinna@vinschen.de>
12677
12678         * include/userenv.h: New header file.
12679         * lib/userenv.def: New stub for userenv.dll.
12680
12681 2000-08-08  Christopher Faylor  <cgf@cygnus.com>
12682
12683         * include/winuser.h: Correct PCWPSTRUCT typo.
12684         (discovered by Axel Riese)
12685
12686 2000-07-27  DJ Delorie  <dj@redhat.com>
12687
12688         * include/windows.h: optimize non-inclusion of repeat headers
12689
12690 2000-07-21  Corinna Vinschen  <corinna@vinschen.de>
12691
12692         * include/winnt.h: Add missing typedefs for PTOKEN_SOURCE and
12693         LPTOKEN_SOURCE.
12694
12695 2000-07-11  DJ Delorie  <dj@cygnus.com>
12696
12697         * include/shlobj.h: add CSIDL_COMMON_*
12698
12699 2000-06-27  Corinna Vinschen  <corinna@vinschen.de>
12700
12701         * include/winbase.h: Add stream ids BACKUP_OBJECT_ID,
12702         BACKUP_REPARSE_DATA and BACKUP_SPARSE_BLOCK.
12703         Add file open flags FILE_FLAG_OPEN_REPARSE_POINT and
12704         FILE_FLAG_OPEN_NO_RECALL.
12705         * winioctl.h: Add device io control codes FSCTL_GET_REPARSE_POINT,
12706         FSCTL_SET_REPARSE_POINT and FSCTL_DELETE_REPARSE_POINT.
12707         * winnt.h: Add typedef for GUID.
12708         Add file attributes FILE_ATTRIBUTE_ENCRYPTED,
12709         FILE_ATTRIBUTE_SPARSE_FILE, FILE_ATTRIBUTE_REPARSE_POINT and
12710         FILE_ATTRIBUTE_NOT_CONTENT_INDEXED.
12711         Add volume attributes FILE_VOLUME_QUOTAS, FILE_SUPPORTS_SPARSE_FILES,
12712         FILE_SUPPORTS_REPARSE_POINTS, FILE_SUPPORTS_REMOTE_STORAGE,
12713         FILE_SUPPORTS_OBJECT_IDS and FILE_SUPPORTS_ENCRYPTION.
12714         Add several reparse point defines and typedefs for REPARSE_DATA_BUFFER,
12715         REPARSE_GUID_DATA_BUFFER and REPARSE_POINT_INFORMATION.
12716         * lib/psapi.def: New file.
12717
12718 2000-06-22  Christopher Faylor  <cgf@cygnus.com>
12719
12720         * rpcdce.h: Protect OPTIONAL definition since it may be (legally)
12721         previously defined.
12722         * windef.h : Ditto.
12723
12724 2000-06-14  Kazuhiro Fujieda  <fujieda@jaist.ac.jp>
12725
12726         * include/winnt.h: Add some missing defines related to locale
12727         identifiers.  Translate values of LANG_* and SUBLANG_* into hexadecimal.
12728
12729 2000-05-27  Corinna Vinschen  <corinna@vinschen.de>
12730
12731         * include/wincrypt.h: Add missing CRYPT_MACHINE_KEYSET define.
12732
12733 2000-05-18  Corinna Vinschen  <corinna@vinschen.de>
12734
12735         * include/winnt.h: Add some missing TAPE_DRIVE_* defines.
12736
12737 2000-04-26  Christopher Faylor  <cgf@cygnus.com>
12738
12739         * include/wininet.h: Add another "INTERNET_OPTIONS".
12740
12741 2000-04-25  Mumit Khan  <khan@xraylith.wisc.edu>
12742
12743         * include/winspool.h: Add 2 more PRINTER_ATTRIBUTE_* macros.
12744
12745 2000-04-25  Martin Kotulla  <martin-k@softmaker.de>
12746
12747         * include/ddeml.h (DdeCreateStringHandle{A,W}): Fix prototype.
12748         * include/shlobj.h (IShellLink{A,W}::GetPath): Fix prototype.
12749         * include/wingdi.h: Add LPFNDEVMODE and LPFNDEVCAPS callbacks.
12750         * include/winuser.h: Add WM_* macros. Add PCOPYDATASTRUCT typedef.
12751
12752 2000-04-10  Christopher Faylor  <cgf@cygnus.com>
12753
12754         * include/winbase.h: Change first argument of ENUMRES* types to
12755         coincide with Microsoft usage.
12756
12757 2000-04-01  Christopher Faylor  <cgf@cygnus.com>
12758
12759         * include/wininet.h: Add three more "INTERNET_OPTIONS".
12760
12761 2000-03-30  Mumit Khan  <khan@xraylith.wisc.edu>
12762
12763         * include/winbase.h (CreateHardLink{A,W}): Add prototypes.
12764         * include/winerror.h (ERROR_TOO_MANY_LINKS): Add macro.
12765         * include/winnt.h (SEC_*): Add macros.
12766         * lib/th32.def: Use Kernel32.dll instead of TH32.DLL.
12767         * include/ole.h: Workaround for C++ parser bug.
12768         * include/rpcdcep.h: Likewise.
12769         * include/winsock.h: Likewise.
12770
12771 2000-03-26  Christopher Faylor  <cgf@cygnus.com>
12772
12773         * include/winnt.h: Eliminate duplicate PCONTEXT and LPCONTEXT typedefs.
12774
12775 2000-02-28  Mumit Khan  <khan@xraylith.wisc.edu>
12776
12777         Patches from Jan Nijtmans <j.nijtmans@chello.nl>:
12778         * include/wtypes.h (PBLOB, LPBLOB): Define.
12779         * include/winsock2.h: Much more complete version.
12780         (FD_SET, SOMAXCONN): Protect common macros defined by winsock.h.
12781
12782         Patches from Jan Nijtmans <j.nijtmans@chello.nl>:
12783         * include/winsock.h (FD_CLR): Add missing ')'.
12784         (timercmp): Fix macro to handle all 6 comparison operators.
12785         (AF_FIREFOX, AF_UNKNOWN1, AF_BAN, AF_ATM, AF_INET6): Define.
12786         (AF_MAX): Update.
12787         (PF_FIREFOX, PF_UNKNOWN1, PF_BAN, PF_ATM, PF_INET6): Define.
12788
12789         * include/largeint.h: Rename HAVE_INT64 macro to _HAVE_INT64 to avoid
12790         namespace pollution.
12791         * include/rpcndr.h: Likewise.
12792         * include/winnt.h: Likewise.
12793         * include/shlobj.h (SHGetDataFromIDList{A,W}): Fix typo.
12794         (SHGetSpecialFolderPath{A,W}): Add prototypes.
12795         * lib/ole32.def: Add missing exports.
12796         * include/winbase.h (TLS_MINIMUM_AVAILABLE): Move macro from here
12797         * include/winnt.h (TLS_MINIMUM_AVAILABLE): to here.
12798         (NT_TIB): Define.
12799         * include/tlhelp32.h: New file.
12800
12801 2000-02-28  Christopher Faylor  <cgf@cygnus.com>
12802
12803         * include/rapi.h: New file.
12804         * lib/rapi.def: New file.
12805
12806 2000-02-11  Axel Riese  <ariese@andromeda.risc.uni-linz.ac.at>
12807
12808         * oaidl.h (LPTYPECOMP): Remove multiple definition.
12809
12810 2000-02-03  Mumit Khan  <khan@xraylith.wisc.edu>
12811
12812         * Snapshot 2000-02-03.
12813
12814 2000-01-21  Chris Faylor  <cgf@cygnus.com>
12815
12816         * include/winnt.h: Add ARM support.
12817
12818 2000-01-19  Mumit Khan  <khan@xraylith.wisc.edu>
12819
12820         From Greg Primes <gregory.l.priem@intel.com>:
12821         * include/oaidl.h (DESCKIND): Define macro.
12822         (ITypeComp): Define interface.
12823         (ITypeComp): Likewise.
12824         * rpcndr.h (DECLSPEC_UUID): Define macro.
12825         (MIDL_INTERFACE): Likewise.
12826
12827         * include/psapi.h: New file.
12828         * include/imagehlp.h: New file.
12829         * lib/imagehlp.def: New file.
12830
12831         * include/oaidl.h (tagVARIANT): Update fields.
12832
12833         From Craig Lanning <CraigL@DyCon.com>:
12834         * include/commctrl.h: Add some TCS_* macros.
12835         * include/winnls.h (IsValidLocale): Add prototype.
12836
12837 2000-01-18  Mumit Khan  <khan@xraylith.wisc.edu>
12838
12839         * include/oaidl.h: OLE Patches from "Fifer, Eric"
12840         <EFifer@sanwaint.com> needed to build Win32::OLE perl module.
12841         * include/objbase.h: Likewise.
12842         * include/objidl.h: Likewise.
12843         * include/ocidl.h: New file.
12844         * include/oleauto.h: Likewise.
12845         * include/wtypes.h: Likewise.
12846         * lib/oleaut32.def: Likewise.
12847
12848         * include/lmserver.h (NetServerTransportAddEx): Fix prototype.
12849         Thanks to "Jon Leichter" <jon@symas.com>.
12850         * include/commctrl.h (LVM_FINDITEM): Fix typo in macro.
12851         * include/winbase.h: Add GetLongPathName{A,W} prototypes.
12852         * include/shellapi.h (SHGetFileInfo): Add macro. Thanks to
12853         "Axel Riese" <ariese@andromeda.risc.uni-linz.ac.at>.
12854         (CommandLineToArgvW): Fix prototype. Thanks to "Frans E. van
12855         Dorsselaer" <frans@bia-bv.demon.nl>.
12856         * include/httpext.h: New file. Thanks to Jan Nijtmans
12857         <j.nijtmans@chello.nl>.
12858         * include/mmsystem.h (WAVEFORMATEX): Guard definition to avoid
12859         redefinition of LPCWAVEFORMATEX in DirectX headers.
12860         (CALLBACK_NULL): Define to be 0. Thanks to Krzysztof Nikiel
12861         <krzych00@priv7.onet.pl>.
12862         * include/sqlext.h (SQLDriverConnnect): Fix prototype.
12863         * include/windef.h (HRESULT): Guard definition to avoid
12864         redefinition in DirectX headers.
12865         * include/winnt.h: Add target macros from windows.h.
12866         * include/windows.h: Update synch comment for target macros.
12867         (_ANONYMOUS_STRUCT): Define for GCC 2.95 and newer.
12868         (_ANONYMOUS_UNION): Likewise.
12869         * include/wingdi.h (AbortPrinter): Move from here ...
12870         * include/winspool.h (AbortPrinter): to here and fix linkage.
12871         (MONITOR_INFO_2{A,W}): Define.
12872         * include/winsock.h (htons): Fix argument.
12873         (htonl): Likewise.
12874         * include/winsock2.h (SO_*, MAX_*, WSA_*): Add macros.
12875         (GROUP): Define.
12876         (GUID): Define conditionally.
12877         (WSAPROTOCOLCHAIN, WSAPROTOCOL_INFO): Define.
12878         (WSASocket*): Declare.
12879         * include/basetyps.h (GUID): Guard REGUID and LPGUID as well.
12880
12881         * lib/dsetup.def: Remove leading underscore.
12882         * lib/dsound.def: Likewise.
12883         * lib/ws2_32.def: Likewise.
12884
12885 1999-12-22  Mumit Khan  <khan@xraylith.wisc.edu>
12886
12887         * include/windef.h (HMONITOR, HTERMINAL, HWINEVENTHOOK): Define
12888         handles.
12889
12890         * lib/Makefile.in (EXTRA_OBJS): Add dinput.o.
12891         * lib/dinput.c: Include windows.h for GCC.
12892         * lib/dxguid.c: Likewise.
12893         (INITGUID): Define macro.
12894
12895         * include/objidl.h (ISequentialStream): Define interface.
12896         (IStream): Derive from ISequentialStream.
12897
12898         * include/objidl.h (IStream::{LockRegion, UnlockRegion, Stat,
12899         Clone}): Mark as PURE.
12900         (IDataObject::EnumDAdvise): Likewise.
12901         * include/oleidl.h (IDropSource::GiveFeedback): Likewise.
12902         (IViewObject::Unfreeze): Likewise.
12903         (IViewObject2::Unfreeze): Likewise.
12904
12905         * include/objidl.h: Add various IID_ declarations.
12906         * include/olectl.h: Likewise.
12907         * include/oleidl.h: Likewise.
12908
12909 1999-12-21  Mumit Khan  <khan@xraylith.wisc.edu>
12910
12911         * Snapshot 1999-12-21.
12912
12913         * include/winbase.h (CancelIO): Rename to CancelIo.
12914         * include/winsvc.h (LPHANDLER_FUNCTION): Fix prototype.
12915         * include/winuser.h (PEVENTMSG, LPEVENTMSG): Declare.
12916
12917         * Merge with winsup-19991218.
12918         * include/winnt.h: Add defines for W2K ACL control flags.
12919
12920         * Merge with Anders Norlander's 19991130 snapshot.
12921
12922         * include/windows.h: #include mmsystem.h ifndef WIN32_LEAN_AND_MEAN.
12923         * include/winbase.h (EXCEPTION_INVALID_HANDLE): Define.
12924
12925         Patch from Harold Weissfield
12926         * include/shellapi.h: Added some ABN_* defines.
12927
12928         * include/commctrl.h (_TrackMouseEvent): Add prototype.
12929         * lib/comctl32.def (_TrackMouseEvent): Import.
12930         * include/winuser.h: Misc. fixes from Sang Cho
12931         <sangcho@alpha94.chongju.ac.kr>.
12932         * include/winuser.h (SM_CMETRICS): Define to 76 or 83 depending on
12933         value of _WIN32_WINNT.
12934         * include/winuser.h: Reorganize SM_* defines in numerical order.
12935
12936 1999-12-14  Mumit Khan  <khan@xraylith.wisc.edu>
12937
12938         * include/windef.h: Make RECTL a distinct type from RECT.
12939         * include/windows.h: Define upto 8 DUMMYUNIONNAMEs for DirectX.
12940         * include/winuser.h (CDS_): Update (Franco Bez <franco.bez@gmx.de>).
12941         (COMPAREITEMSTRUCT): Fix fields.
12942         (SERIALKEYSA): Likewise.
12943         (SERIALKEYSW): Likewise..
12944         * include/winbase.h (CRITICAL_SECTION_DEBUG): Likewise.
12945         (WIN32_FIND_DATAA): Likewise.
12946         (WIN32_FIND_DATAW): Likewise.
12947         * include/commdlg.h (SNDMSG): Define.
12948         * include/winsock.h (SO_UPDATE_ACCEPT_CONTEXT): Define.
12949         (SO_CONNECT_TIME): Likewise.
12950         (AcceptEx): Declare.
12951         (GetAcceptExSockaddrs): Likewise.
12952         * include/winsock2.h: Fix typo in #ifdef __cplusplus.
12953         * include/winspool.h: Add RC_INVOKED guard.
12954         * lib/wsock32.def (AcceptEx@32): Export.
12955         (GetAcceptExSockaddrs@32): Likewise.
12956
12957 1999-11-18  Mumit Khan  <khan@xraylith.wisc.edu>
12958
12959         * Snapshot 1999-11-18.
12960
12961         * include/oaidl.h (tagVARIANT): Rename pbool to pboolVal needed by
12962         Octopod C++ IDE (and MSVC compatibility).
12963         * include/oleauto.h (V_BOOLREF(X)): Likewise.
12964         * include/shellapi.h (ShellAbout*): Fix typo.
12965         * wingdi.h (FW_ULTRABOLD): Likewise.
12966         * include/winnt.h (_TAPE_ERASE, _TAPE_PREPARE, _TAPE_SET_POSITION,
12967         _TAPE_WRITE_MARKS): Add missing fields and fix existing ones.
12968         Add packing directives for various structures. All structure
12969         sizes now conform to MSVC.
12970
12971 1999-11-07  Mumit Khan  <khan@xraylith.wisc.edu>
12972
12973         Released 1999-11-07.
12974
12975 1999-11-06  Mumit Khan  <khan@xraylith.wisc.edu>
12976
12977         * include/winsock2.h: New file. Mostly a stub for now.
12978         * include/winbase.h (DllMain): Delete prototype.
12979         * include/commctrl.h (Header_SetItem): Fix macro.
12980         * include/{isguids.h, lmerrlog.h, mcx.h, objfwd.h, olectl.h,
12981         regstr.h, richole.h, rpcdce.h, rpcdcep.h, rpcnsi.h, rpcproxy.h,
12982         shlguid.h, sqltypes.h, winperf.h}: Enclose in extern "C" if c++.
12983
12984         Merge in changes from wxWindows.
12985         * include/basetyps.h (GUID_DEFINED, UUID_DEFINED): Add guards.
12986         * include/oaidl.h (DISPID_*): Add macros.
12987         (IID_ITypeLib, IID_ICreateTypeInfo, IID_ICreateTypeInfo2,
12988         IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_ITypeInfo,
12989         IID_IErrorInfo, IID_IDispatch, IID_ICreateErrorInfo): Declare.
12990         * include/objidl.h (IDataObject): Fix EnumFormatEtc parameter.
12991
12992         Merge in changes from Octopod C++ IDE group.
12993         * include/commctrl.h (NMHEADERA, NMHEADERW): Define.
12994         (Header_InsertItem): Fix macro.
12995         * include/oaidl.h (IID_IDispatch): Declare.
12996         (IID_ISupportErrorInfo): Likewise.
12997         (IDispatch): Rename Invoked to Invoke.
12998         * include/objidl.h (IPersist): Fix GetClassID.
12999         * include/oleauto.h (VectorFromBstr): Declare.
13000         (BstrFromVector): Likewise.
13001         * include/olectl.h (OLEMISC_*): Update.
13002         * include/olectlid.h (IID_IDispatch): Declare.
13003         * include/oleidl.h (IOleObject): Fix GetExtent and SetExtent.
13004         (IOleInPlaceFrame): Fix.
13005         (ISupportErrorInfo): Define.
13006         (IErrorInfo): Define.
13007         * include/winuser.h (SIF_TRACKPOS): Define.
13008
13009 1999-11-03  Mumit Khan  <khan@xraylith.wisc.edu>
13010
13011         Fix Merge errors:
13012         * include/winnt.h (PSID): Uncomment definition.
13013         (PISID): Rename from PSID.
13014         (struct _TAPE_GET_MEDIA_PARAMETER): Remove reserved field.
13015         (struct _SECURITY_ATTRIBUTES): Remove multiple definition.
13016
13017         * include/lmalert.h, include/lmbrowsr.h, include/lmchdev.h,
13018         include/lmconfig.h, include/lmerrlog.h, include/lmmsg.h,
13019         include/lmremutl.h, include/lmrepl.h, include/lmserver.h,
13020         include/lmsvc.h, include/lmwksta.h, include/oaidl.h,
13021         include/shellapi.h, include/winbase.h, include/wingdi.h,
13022         include/winnt.h, include/winsock.h: Merged with winsup-19991026.
13023
13024 1999-10-31  Mumit Khan  <khan@xraylith.wisc.edu>
13025
13026         * include/wingdi.h (PHYSICAL*, SCALINGFACTOR*): New. From
13027         Marius Kjeldahl <kjeldahl@hotmail.com>.
13028
13029 1999-08-29  Mumit Khan  <khan@xraylith.wisc.edu>
13030
13031         * include/winnt.h (APPLICATION_ERROR_MASK): Add macros.
13032         (ERROR_SEVERITY_*): Likewise.
13033
13034 1999-08-17  Mumit Khan  <khan@xraylith.wisc.edu>
13035
13036         * include/winbase.h (TLS_OUT_OF_INDEXES): Add macro.
13037         (DllMain): Fix prototype.
13038
13039 1999-08-02  Mumit Khan  <khan@xraylith.wisc.edu>
13040
13041         * include/commdlg.h: Enclose within pack(push,1) and pack(pop).
13042         (cderr.h): Don't include.
13043         * include/winuser.h: Fix macro definitions.
13044
13045 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
13046
13047         Merge with winsup 1999-07-29:
13048         * include/wincon.h (MOUSE_WHEELED): Define.
13049         * include/winnt.h (PSECURITY_ATTRIBUTES): Add type.
13050         (SECURITY_DESCRIPTOR): Add struct type.
13051         (PSECURITY_DESCRIPTOR): Pointer to above type. BEWARE: this type
13052         is equal to PVOID in the Platform SDK! So don't depend on accessing
13053         members through ->.
13054
13055 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
13056
13057         * lib/Makefile.in (install-headers): Don't @ commands.
13058         (install-libraries): Ditto.
13059
13060 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
13061
13062         * include/sqlext.h: Use #include <sql.h> instead of "sql.h".
13063
13064 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
13065
13066         Patch from Mumit Khan:
13067         * include/windows.h: Fix typo in winsock.h include guard and add
13068         _UWIN to the list.
13069         * include/winnt.h (__int64): Undefine first.
13070         (struct _SID): Declare.
13071
13072 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
13073
13074         * include/winnt.h: Add some REG_* defines reported by Boris Lantrewitz.
13075
13076 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
13077
13078         Patch from Mumit Khan:
13079         * Makefile.in: Do the right thing when cross-compiling.
13080         * include/windef.h: Don't define _export and __export if already
13081         defined.
13082
13083 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
13084
13085         * include/basetyps.h (DECLARE_INTERFACE): Use com_interface attribute.
13086         (DECLARE_INTERFACE_): Ditto.
13087
13088 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
13089
13090         * include/mmsystem.h (HWAVEOUT): Fix missing ')'
13091
13092         Reported by Brad Porter
13093         * include/wingdi.h (FW_ULTRALIGHT): Add.
13094         (FW_DEMIBOLD): Add.
13095         (FW_ULTRABOLD): Add.
13096         (FW_BLACK): Add.
13097         (JOHAB_CHARSET): Add.
13098         (VIETNAMESE_CHARSET): Add.
13099
13100
13101 1999-05-15  Anders Norlander  <anorland@hem2.passagen.se>
13102
13103         * lib/scrnsave.c (WinMain): Remove dependencies on C library.
13104         * lib/Makefile.in (Makefile): Regenerate.
13105         * include/pshpack[1248].h: New files, if a program would use any of
13106         them.
13107         * include/poppack.h: Ditto.
13108         * include/windef.h (_WIN32_WINNT): Define
13109         * include/windows.h: Remove DUMMYUNIONNAME[45].
13110         * include/windows.h: Correctly define _M_IX86 to reflect the target
13111         processor.
13112         * include/windows.h: Add preliminary support for other architectures.
13113         * include/winnt.h: Add CONTEXT structure for PPC and ALPHA.
13114         * include/winnt.h: Remove PACKED from U/LARGE_INTEGER
13115         * include/winnt.h (LUID_AND_ATTRIBUTES): Use pack(4) to solve alignment
13116         issue with LARGE_INTEGER.
13117         (ANSI_NULL): Define.
13118         (PSZ): Define.
13119         (ACL_REVISION[1234]): Define.
13120         (MIN/MAX_ACL_REVISION): Define.
13121         (PTCHAR): Define.
13122         (LANG_USER_DEFAULT): Define.
13123         (LANG_SYSTEM_DEFAULT): Define.
13124         (LOCALE_NEUTRAL): Define.
13125         (SORTVERSIONFROMLCID): Define.
13126         * include/windef.h (UNREFERENCED_PARAMETER): Define.
13127         (UNREFERENCED_LOCAL_VARIABLE): Define.
13128         (DBG_UNREFERENCED_PARAMETER): Define.
13129         (DBG_UNREFERENCED_LOCAL_VARIABLE): Define.
13130         * lib/mswsock.def: New file. Imports for mswsock.dll.
13131         * include/custcntl.h: New file. Necessary to compile some SDK
13132         samples.
13133         * include/winuser.h (SM_MOUSEWHEELPRESENT): Define.
13134         (WM_MOUSEWHEEL): Define.
13135         (WHEEL_DELTA): Define.
13136         (WM_MOUSELAST): Redefine to reflect WM_MOUSEWHEEL.
13137         (WM_NEXTMENU): Define.
13138         (CharNextA): Fix prototype.
13139         (CharNextW): Ditto.
13140
13141 1999-05-14  Anders Norlander  <anorland@hem2.passagen.se>
13142
13143         * include/winsock.h: Enclose in extern "C" if C++, huh?
13144         * include/winuser.h(WM_SYNCPAINT): Define. From fltk.
13145
13146 1999-05-13  Anders Norlander  <anorland@hem2.passagen.se>
13147
13148         * include/windef.h (NULL): Define only ifndef
13149         (TRUE): Ditto, was previously only defined ifndef FALSE
13150         (PASCAL): Define as _pascal
13151         (__pascal): Define
13152         (WINAPIV): Define
13153         (min,max): Define only ifndef NOMINMAX
13154
13155 1999-05-10  Anders Norlander  <anorland@hem2.passagen.se>
13156
13157         * include/commctrl.h: Support for Date/Calendar controls + IE controls.
13158         You must define _WIN32_IE if you want support for it.
13159         Modified patch from Nirmal Prasad  <nprasad@truept.com>.
13160
13161 1999-05-10  Ron Aaron   <v-ronaar@Exchange.Microsoft.com>
13162
13163         * include/wincon.h: Add some ButtonState flags and EventFlags.
13164
13165 1999-05-10  Anders Norlander  <anorland@hem2.passagen.se>
13166
13167         * include/basetyps.h: Don't support COM when __OBJC__ defined because
13168         interface define causes mayhem.
13169         (DEFINE_INTERFACE): Use comobject attribute only if HAVE_COMOBJECT is
13170         defined.
13171         * include/windows.h: Undefine BOOL if __OBJC__ defined
13172
13173 1999-05-09  Chris Faylor  <cgf@cygnus.com>
13174
13175         * include/winnls.h: Define additional code pages.
13176
13177 1999-05-09  Anders Norlander  <anorland@hem2.passagen.se>
13178
13179         * include/winbase.h(RtlFillMemory): Parameters got passed in wrong
13180         order, corrected.
13181         (RtlZeroMemory): Use RtlFillMemory
13182
13183 1999-05-04  Anders Norlander  <anorland@hem2.passagen.se>
13184
13185         * include/winnt.h: Add PACKED to LARGE_INTEGER and ULARGE_INTEGER
13186         to get the correct size when used in some structs.
13187         (ULARGE_INTEGER): Ditto.
13188         * include/winnt.h (TAPE_CREATE_PARTITION): Add struct.
13189         * include/winnt.h: Add TAPE_* pointer types PTAPE_*
13190
13191 1999-05-02  Nirmal Prasad  <nprasad@truept.com>
13192
13193         * include/wininet.h: Enclose in extern "C" if c++
13194         (INTERNET_BUFFERSA/W): Define struct
13195         * include/wininet.h: Add some HSR_* defines
13196
13197 1999-05-02  Anders Norlander  <anorland@hem2.passagen.se>
13198
13199         * include/winnt.h (IMAGE_FIRST_SECTION): Prepend missing paren
13200         * include/winnt.h (UNALIGNED): Define
13201         * include/windef.h (DECLSPEC_NORETURN): Define
13202
13203         * include/wininet.h (INTERNET_MAX_NAME): Remove
13204         (INTERNET_MAX_SCHEME_LENGTH): Define
13205         (INTERNET_MAX_URL_LENGTH): Use INTERNET_MAX_SCHEME_LENGTH
13206         * include/wininet.def: Completely redone, it was losing badly.
13207
13208 1999-05-01  Anders Norlander  <anorland@hem2.passagen.se>
13209
13210         * lib/dplayx.def: Remove '_' prefixes
13211         * lib/shell32.def: Remove imports for IID_ContextMenu
13212
13213 1999-04-29  Anders Norlander  <anorland@hem2.passagen.se>
13214
13215         * Makefile.in (dist): Support dist target
13216         * lib/Makefile.in (dist): Likewise
13217         * lib/Makefile.in (uninstall-headers): Fix command
13218         * Makefile.in (bindist): Target to build a prebuilt dist
13219
13220         * lib/ws2_32.def: Winsock2 implib
13221
13222         * include/largeint.h: New header
13223         * include/largeint.c: Large integer support library
13224         * lib/Makefile.in(EXTRA_LIBS): Add liblargeint.a
13225         (EXTRA_OBJS): Add largeint.o
13226
13227         * include/Makefile: Remove
13228         * lib/Makefile: Remove
13229         * Makefile: Remove
13230         * configure.in: New autoconf script
13231         * configure: generated configure script
13232         * Makefile.in: autoconf makefile template
13233         * lib/Makefile.in: Ditto
13234         * include/test.c: mv to lib/test.c
13235         * include/res.rc: mv to lib/res.rc
13236         * include/TODO: mv to .
13237         * include/Notes: mv to ./NOTES
13238
13239 1999-04-28  Anders Norlander  <anorland@hem2.passagen.se>
13240
13241         * include/zmouse.h (WHEEL_DELTA): Define
13242
13243 1999-04-26  Mumit Khan  <khan@xraylith.wisc.edu>
13244
13245         * include/ddeml.h (HSZPAIR): Declare.
13246         * include/zmouse.h: New file.
13247
13248 1999-04-27  Daniel Guerrero Miralles  <daniel.guerrero@upcnet.upc.es>
13249
13250         * lib/d3dim.def: New implib
13251         * lib/d3drm.def: Ditto
13252         * lib/d3dxof.def: Ditto
13253         * lib/ddraw.def: Ditto
13254         * lib/dinput.def: Ditto
13255         * lib/dplayx.def: Ditto
13256         * lib/dsetup.def: Ditto
13257         * lib/dsound.def: Ditto
13258         * lib/dinput.c: Guid library for DirectInput
13259         * lib/dxguid.c: Guid library for DirectX
13260
13261 1999-04-21  Anders Norlander  <anorland@hem2.passagen.se>
13262
13263         * include/windowsx.h (GET_X_LPARAM): Missing macro added (reported
13264         by Ron Aaron).
13265         * include/windowsx.h (GET_Y_LPARAM): Also missing
13266         * include/winnls.h (IsValidCodePage): Missing prototype added (reported
13267         by Mumit Khan).
13268
13269 1999-04-18  Anders Norlander  <anorland@hem2.passagen.se>
13270
13271         * include/scrnsave.h: New header file for screen saver library
13272         * lib/scrnsave.c: New file: screen saver library
13273
13274 1999-04-17  Anders Norlander  <anorland@hem2.passagen.se>
13275
13276         * include/regstr.h: Enclosed all strings in TEXT() macros so it
13277         works well in when UNICODE is defined
13278
13279 1999-04-17  Nirmal Prasad  <nprasad@truept.com>
13280
13281         * include/winuser.h(STYLESTRUCT): New struct
13282         * include/wingdi.h:(GOBJENUMPROC): This function type should
13283         return void.
13284
13285 1999-04-17  Anders Norlander  <anorland@hem2.passagen.se>
13286
13287         * include/basetyps.h (LPGUID): New typedef
13288         * lib/glut.def: Import library defintions for glut.dll
13289         * lib/glu32.def: Ditto for glut32.dll
13290         * include/winnt.h: Fixed handling of wchar_t typedef
13291         * include/sql.h(SQL_NO_DATA_FOUND): Replace with SQL_NO_DATA
13292         * include/sqlext.h(SQL_NO_DATA_FOUND): Define as SQL_NO_DATA
13293
13294 1999-03-20  Anders Norlander  <anorland@hem2.passagen.se>
13295
13296         * include/winbase.h(AbnormalTermination): Define as FALSE
13297         * include/commctrl.h: Support for new progress bar messages/styles
13298
13299 1999-03-20  Geoffrey Noer  <noer@cygnus.com>
13300
13301         * include/commdlg.h(PageSetupDlg): New define
13302         * include/richedit.h: Missing SCF_* defines
13303         * include/winnt.h: Lots o' defines
13304         * include/winbase.h(AllocateAndInitializeSid): Corrected prototype
13305
13306 1999-03-09  Anders Norlander  <anorland@hem2.passagen.se>
13307
13308         * include/commdlg.h: Removed pack pragma
13309         * lib/comctl32.def(InitCommonControlsEx@4): Added import
13310
13311 1999-03-08  Anders Norlander  <anorland@hem2.passagen.se>
13312
13313         * Makefile: Set version to 0.1.5
13314         * lib/Makefile (clean): Fix typo
13315
13316         * include/commctrl.h: Removed pack pragma
13317         * include/cpl.h: Likewise
13318         * include/dbt.h: Likewise
13319         * include/dde.h: Likewise
13320         * include/nddeapi.h: Likewise
13321         * include/shellapi.h: Likewise
13322         * include/wincrypt.h: Likewise
13323         * include/lmaccess.h: Fixed USER_PRIV_ADMIN typo
13324
13325         * include/winsock.h (netent): Define only ifndef __INSIDE_CYGWIN__
13326         (servent): Likewise
13327         (protoent): Likewise
13328
13329         * include/windows.h: Prevent inclusion of winsock.h if we are
13330         using or compiling cygwin. Define Win32_Winsock to force inclusion.
13331
13332 1999-01-08  Anders Norlander  <anorland@hem2.passagen.se>
13333
13334         * include/winbase.h (CREATE_FORCEDOS): New define
13335
13336 1999-01-07  Anders Norlander  <anorland@hem2.passagen.se>
13337
13338         * include/wincon.h(KEY_EVENT_RECORD): Fixed packing problem on
13339         (COORD): Likewise
13340         * include/wingdi.h (BITMAPFILEHEADER): Fixed packing
13341         * include/windows.h: Added DUMMYUNIONNAME4 and 5
13342         * include/winnt.h (LUID_AND_ATTRIBUTES_ARRAY): New type
13343         (PLUID_AND_ATTRIBUTES_ARRAY): New type
13344
13345         * include/ddeml.h: Removed unnecessary `#pragma pack'
13346         * include/imm.h: Likewise
13347         * include/nddeapi.h: Likewise
13348         * include/nspapi.h: Likewise
13349         * include/regstr.h: Likewise
13350         * include/wincon.h: Likewise
13351         * include/windef.h: Likewise
13352         * include/winioctl.h: Likewise
13353         * include/winnls.h: Likewise
13354         * include/winsvc.h: Likewise
13355         * include/winuser.h: Likewise
13356         * include/winver.h: Likewise
13357         * include/wtypes.h: Likewise
13358
13359 1999-01-05  Anders Norlander  <anorland@hem2.passagen.se>
13360
13361         * Makefile (VERSION): Set to 0.1.4
13362         * include/basetyps.h: Check for NOCOMOBJECT
13363         * include/Makefile: Pass -DNOCOMOBJECT to g++ to avoid warnings
13364         on comobject attribute.
13365         * lib/kernel32.def: Added a few functions
13366         * include/windef.h (DWORD): Changed back to unsigned long
13367
13368         * include/windows.h: Include only winresrc.h if RC_INVOKED is defined,
13369         winresrc.h in turn includes the necessary headers. This makes things
13370         much simpler, no need to protect blocks of code in headers that
13371         should not be seen by the resource compiler.
13372
13373 1999-01-05  Geoffrey Noer  <noer@cygnus.com>
13374
13375         * include/winbase.h (STATUS_INVALID_HANDLE): Added define
13376         * include/wincon.h: Added console event type flags
13377         * include/winnt.h (FILE_SHARE_DELETE): Added
13378           (SECURITY_DESCRIPTOR): typedef as DWORD
13379
13380         * include/winuser.h (WM_PENWINFIRST): Fixed typo
13381         * include/winsock.h: Protect some blocks with __INSIDE_CYGWIN_ and
13382         define u_* types only if _SYS_TYPES_H is not defined.
13383
13384 1999-01-02  Anders Norlander  <anorland@hem2.passagen.se>
13385
13386         * COPYING.LIB: Deleted
13387         * README: Updated to reflect license changes
13388         * include/shlobj.h: Remove extra comma on some enums
13389         * include/windef.h: Changed DWORD typedef from unsigned long to
13390         unsigned int in order to avoid warnings on bit fields that
13391         use DWORD.
13392         * include/Makefile (test): Compile with all warnings
13393         * include/unknwn.h: Include objfwd.h
13394         * include/winsock.h: Added missing copyright notices.
13395
13396 1999-01-01  Anders Norlander  <anorland@hem2.passagen.se>
13397
13398         * lib/winmm.def: Corrected LIBRARY statement
13399         * include/mmsystem.h: Define mmioSeek codes if not already defined
13400         * include/commctrl.h (CreateStatusWindowA): Corrected prototype
13401         (CreateStatusWindowW): Likewise
13402
13403         * include/winresrc.h: Include only files necessary instead of windows.h
13404         * include/dde.h: Allow inclusion in resource scripts.
13405         * include/winnt.h: Likewise
13406         * include/commctrl.h: Likewise
13407         * include/prsht.h: Likewise
13408         * README: Updated
13409
13410 1998-12-10  Anders Norlander  <anorland@hem2.passagen.se>
13411
13412         * include/sqltypes.h (SQLHANDLE): Added this type
13413         (SQLHDESC): Likewise
13414         * include/sql.h (SQLFreeHandle): Added this prototype
13415         (SQLAllocHandle): Likewise
13416
13417 1998-12-08  Anders Norlander  <anorland@hem2.passagen.se>
13418
13419         * include/winsock.h: Define _GNU_H_WINDOWS32_SOCKETS to avoid
13420         conflicts with cygwin headers.
13421
13422 1998-12-06  Anders Norlander  <anorland@hem2.passagen.se>
13423
13424         * Makefile: Changed VERSION to 0.1.3
13425         * Makefile (dist-lib): New target to make import library only
13426         distribution
13427         * Makefile (dist-hdr): New target to make headers only distribution
13428         * Makefile (dist): Now depends on dist-lib and dist-hdr instead of
13429         building one single distribution file.
13430         * dist.mak: Deleted
13431
13432         * include/lm.h: New file
13433         * include/lmcons.h: New file
13434         * include/lmalert.h: New file
13435         * include/lmaudit.h: New file
13436         * include/lmconfig.h: New file
13437         * include/lmapibuf.h: New file
13438         * include/lmaccess.h: New file
13439         * include/lmchdev.h: New file
13440         * include/lmremutl.h: New file
13441         * include/lmrepl.h: New file
13442         * include/lmerrlog.h: New file
13443         * include/lmat.h: New file
13444         * include/lmuse.h: New file
13445         * include/lmuseflg.h: New file
13446         * include/lmserver.h: New file
13447         * include/lmerr.h: New file
13448         * include/lmsname.h: New file
13449         * include/lmstats.h: New file
13450         * include/lmsvc.h: New file
13451         * include/lmwksta.h: New file
13452         * include/lmbrowsr.h: New file
13453
13454 1998-12-05  Anders Norlander  <anorland@hem2.passagen.se>
13455
13456         * include/unknwn.h: Fixed IClassFactory declaration; INTERFACE was missing
13457         * include/unknwn.h: Added extern declaration for IID_IClassFactory
13458
13459         * include/initguid.h: New file
13460
13461         * include/rpcndr.h: Defined hyper and MIDL_hyper as double if 64 bit
13462         int not supported
13463
13464         * include/winnt.h: Added USN
13465         * include/winnt.h: Changed handling of 64 bit int support
13466
13467         * include/windows.h: Added support for BC,LCC and MSVC
13468
13469         * include/windows.h: Changed handling machine architecture defines
13470
13471         * include/olectl.h: New file
13472
13473 1998-12-04  Anders Norlander  <anorland@hem2.passagen.se>
13474
13475         * include/oleidl.h: Added IViewObject and IViewObject2
13476
13477         * include/objidl: Corrected prototype for IStorage::DestroyElement and
13478         IStorage::MoveElement
13479
13480         * include/oledlg.h: New file
13481
13482         * include/winresrc.h: New file
13483
13484         * include/wingdi.h: Added LPDOCINFO
13485
13486         * include/commctrl.h: Added SBARS_SIZEGRIP and TVM_SETINDENT
13487         * include/commctrl.h: Added TCM_SETITEM to UNICODE/ANSI block
13488         * include/commctrl.h: Added ListView_GetSelectedCount, ListView_GetItemSpacing,
13489         TabCtrl_SetImageList and TabCtrl_GetItemCount
13490         * include/commctrl.h: Added TVM_FIRST, HDM_FIRST and TV_FIRST
13491
13492         * include/windowsx.h: Added missing ListBox_xx ComboBox_xx etc. macros
13493
13494         * include/wingdi.h: Added (L)PBITMAP,(L)PBITMAPCOREHEADER,
13495         PBITMAPINFOHEADER, (L)PBITMAPCOREINFO and (L)PBITMAPFILEHEADER.
13496
13497         * include/commdlg.h: Added LPDEVNAMES
13498
13499         * include/windows.h: Include excpt.h
13500
13501         * include/excpt.h: New file. This file just contains some
13502         stubs for SEH that do nothing.
13503
13504         * include/commctrl.h: Added general WM_NOTIFY codes
13505
13506         * include/winuser.h: Added ICON_SMALL and ICON_BIG
13507         * include/winuser.h: Removed VK_0-VK_9 VK_A-VK_Z; they should obviously
13508         not be in the headers.
13509         * include/winuser.h: Added LPCBTACTIVATESTRUCT and LPCLIENTCREATESTRUCT
13510         * include/winuser.h: Added old WM_SIZE parameter names so
13511         wxWindows compiles.
13512         * include/winuser.h: Added IDC_SIZE and IDC_ICON
13513         * include/winuser.h: Added LPDLGITEMTEMPLATE
13514         * include/winuser.h: HTCAPTION was missing value
13515         * include/winuser.h: Added WM_ACTIVE flags
13516
13517         * include/windowsx.h: Added _fmemcpy so V compiles; also added
13518         _fxx defines for memmove, memset and memcmp
13519
13520         * include/windef.h: Changed _export and __export to empty defines
13521
13522         * include/shellapi.h: Corrected prototypes for ExtractIcon functions.
13523         String parameters were not const and ExtractAssociatedIcon takes
13524         a WORD pointer not DWORD pointer as last parameter.
13525
13526         * Makefile: Changed VERSION to 0.1.2
13527
13528         * include/ole2ver.h: New file
13529
13530         * Makefile: Removed all dependencies on GLUT
13531
13532         * include/GL/glut.h: Removed file because of decision to remove
13533         files that are not part of the library.
13534         * lib/glut.def: Likewise
13535         * lib/glut32.def: Likewise
13536
13537         * include/windows.h: Include winperf.h
13538
13539         * include/winperf.h: New file
13540
13541         * lib/gdi32.def: Added GetEnhMetaFilePixelFormat
13542
13543         * include/winnls.h: Added calendar types
13544         * include/winnls.h: Added country codes
13545
13546 1998-12-03  Anders Norlander  <anorland@hem2.passagen.se>
13547
13548         * include/windef.h: Added PROC and NEARPROC
13549
13550         * include/wingdi.h: Added ChoosePixelFormat, DescribePixelFormat
13551         * include/wingdi.h: Added OpenGL types and prototypes
13552         * include/wingdi.h: Added ENHMETA_STOCK_OBJECT
13553         * include/wingdi.h: Added DCTT_DOWNLOAD_OUTLINE
13554         * include/wingdi.h: Added POINTFX, TTPOLYCURVE and TTPOLYGONHEADER
13555         * include/wingdi.h: Added truetype character outline types
13556         * include/wingdi.h: Added DEVMODE initialization flags
13557         * include/wingdi.h: Added panose codes
13558         * include/wingdi.h: Added missing character sets
13559         * include/wingdi.h: Added ANTIALIASED_QUALITY and
13560         NONANTIALIASED_QUALITY
13561         * include/wingdi.h: Added ENUMLOGFONTA/W and ENUMLOGFONTEXA/W
13562         * include/wingdi.h: Added pointer types for EXTLOGPEN
13563         * include/wingdi.h: Added PATTERN type
13564         * include/wingdi.h: Added NEWTEXTMETRICA/W and NEWTEXTMETRICEXA/W
13565         * include/wingdi.h: Added new text metric flags
13566         * include/wingdi.h: Added pitch and family flags
13567         * include/wingdi.h: Moved BCHAR defintion from winnt.h here
13568         * include/wingdi.h: Added METAHEADER
13569         * include/wingdi.h: Fixed packing of RGBTRIPLE and BITMAPFILEHEADER
13570         * include/wingdi.h: Added TA_MASK
13571         * include/wingdi.h: Added MAXSTRETCHBLTMODE
13572         * include/wingdi.h: Added error codes
13573
13574         * include/winuser.h: Added missing winhelp structures
13575         * include/winuser.h: Added dialog flags/styles/messages
13576         * include/winuser.h: Added EM_SETMARGIN codes
13577         * include/winuser.h: Made it possiblie to use IDI_XX values
13578         in resource files.
13579         * include/winuser.h: Added missing LoadImage load flags
13580         * include/winuser.h: Added missing message box flags
13581         * include/winuser.h: Added ScrollWindow codes
13582         * include/winuser.h: Added DT_WORD_ELLIPSIS
13583         * include/winuser.h: Added drag and drop support
13584         * include/winuser.h: Added WM_MENUCHAR return codes
13585         * include/winuser.h: Added DLGWINDOWEXTRA
13586         * include/winuser.h: Added missing SetWindowPos flags.
13587         * include/winuser.h: Added BSF_NOTIMEOUTIFNOTHUNG
13588         * include/winuser.h: Added IDHOT_xx defines
13589         * include/winuser.h: Added MOD_WIN
13590         * include/winuser.h: Added missing defines and structs for owner draw
13591         controls.
13592         * include/winuser.h: Added WPF_RESTORETOMAXIMIZED and
13593         WPF_SETMINPOSITION
13594         * include/winuser.h: Added DrawAnimatedRects flags
13595         * include/winuser.h: Added WM_PRINT codes
13596         * include/winuser.h: Added CS_IME class style
13597         * include/winuser.h: Added WM_SIZE codes
13598         * include/winuser.h: Added WM_MOUSEACTIVATE return codes
13599         * include/winuser.h: Added WM_NCHITTEST return codes
13600         * include/winuser.h: Added WM_SIZING parameters
13601         * include/winuser.h: Added WM_NEXTMENU and MDINEXTMENU
13602         * include/winuser.h: Added menu loop codes.
13603         * include/winuser.h: Added NFR_ANSI, NFR_UNICODE, NF_QUERY and
13604         NF_REQUERY
13605         * include/winuser.h: Added WM_POWER flags
13606         * include/winuser.h: Added KL_NAMELENGTH, WSF_VISIBLE
13607         * include/winuser.h: Added missing message filter codes
13608         * include/winuser.h: Added WM_KEYXX message flags
13609         * include/winuser.h: Added WM_SHOWMESSAGE flags
13610         * include/winuser.h: Added old ShowWindow commands
13611         * include/winuser.h: Fixed packing of DLGITEMTEMPLATE and DLGTEMPLATE
13612         structures.
13613
13614         * include/mciavi.h: New file for the MCI AVI driver that for some
13615         reason is not in mmsystem.h.
13616
13617         * include/winbase.h: Added PIPE_UNLIMITED_INSTANCES and INVALID_FILE_SIZE
13618         * include/winbase.h: Added SECURITY_xx for CreateFile
13619         * include/winbase.h: Added RTS and DTS control values
13620         * include/winbase.h: Fixed SYSTEM_INFO structure
13621         * include/winbase.h: Added CREATE_NO_WINDOW, CREATE_SHARED_WOW_VDM
13622         * include/winbase.h: Added FILE_TYPE_REMOTE
13623         * include/winbase.h: Added modem status flags
13624         * include/winbase.h: Added HINSTANCE_ERROR
13625         * include/winbase.h: Added DefineDosDevice defines
13626         * include/winbase.h: Added power management flags AC_xx BATTERY_xx
13627         * include/winbase.h: Added STARTF_XX flags
13628         * include/winbase.h: Fixed typo on _lcreat prototype.
13629         * include/winbase.h: Moved DBG_XX to winnt.h
13630         * include/winbase.h: Moved TOKEN_XX, DLL_PROCESS_XX and DLL_THREAD_XX to
13631         winnt.h
13632
13633         * include/unknwn.h: Added extern declaration of IID_IUnknown
13634
13635         * include/windowsx.h: Added hmemcpy.
13636
13637         * include/winnt.h: Added dummy member to DECLARE_HANDLE struct
13638         * include/winnt.h: Added PACCESS_TOKEN
13639         * include/winnt.h: Added TAPE_XX defines and moved some from winbase.h
13640         * include/winnt.h: Added SE_IMPERSONATION_STATE and TOKEN_SOURCE_LENGTH
13641         * include/winnt.h: Added SE_PRIVILEGE_ENABLED_BY_DEFAULT, SE_PRIVILEGE_ENABLED,
13642         SE_PRIVILEGE_USED_FOR_ACCESS, PRIVILEGE_SET_ALL_NECESSARY,
13643         SECURITY_MAX_IMPERSONATION_LEVEL, DEFAULT_IMPERSONATION_LEVEL,
13644         SECURITY_DYNAMIC_TRACKING and SECURITY_STATIC_TRACKING.
13645
13646         * include/winnt.h: Added SE_OWNER_DEFAULTED, SE_GROUP_DEFAULTED, SE_DACL_XX,
13647         SE_SACL_XX, SE_SELF_RELATIVE, SECURITY_DESCRIPTOR_MIN_LENGTH,
13648         SECURITY_DESCRIPTOR_REVISION and SECURITY_DESCRIPTOR_REVISION1.
13649
13650         * include/winsvc.h: Removed conflicting defines which were supposed
13651         to be in winnt.h
13652
13653         * include/winnt.h: Added SERVICE_NODE_TYPE, SERVICE_LOAD_TYPE
13654         and SERVICE_ERROR_TYPE.
13655
13656         * include/winnt.h: Added SERVICE_XX defines.
13657         * include/winsvc.h: Added SERVICES_ACTIVE_DATABASEA/W,
13658         SERVICES_FAILED_DATABASEA/W and SC_GROUP_IDENTIFIERA/W.
13659
13660         * include/winsvc.h: Added SERVICE_STATE_ALL, SERVICE_QUERY_CONFIG,
13661         SERVICE_CHANGE_CONFIG, SERVICE_QUERY_STATUS, SERVICE_ENUMERATE_DEPENDENTS,
13662         SERVICE_START, SERVICE_STOP, SERVICE_PAUSE_CONTINUE,
13663         SERVICE_USER_DEFINED_CONTROL and SERVICE_ALL_ACCESS
13664
13665 1998-12-02  Anders Norlander  <anorland@hem2.passagen.se>
13666
13667         * include/winbase.h: Corrected prototype for CreateProcessA
13668
13669         * include/mmsystem.h: Added CAPS1 and C1_TRANSPARENT for display
13670         driver extensions.
13671
13672         * include/shlobj.h: Corrected prototype for SHGetDesktopFolder, should
13673         be LPSHELLFOLDER* not LPSHELLFOLDER.
13674
13675         * include/windows.h: Include commdlg.h
13676
13677         * include/winuser.h: Added MDICREATESTRUCT
13678
13679         * include/winuser.h: Added LB_ERR, LB_ERRSPACE, LB_OKAY, CB_ERR,
13680         CB_ERRSPACE, and CB_OKAY
13681
13682         * include/wingdi.h: Added LPBITMAPINFOHEADER
13683
13684         * include/rpcproxy.h: Removed IN, OUT and OPTIONAL since they
13685         are meaningless.
13686         * include/rpcdce2.h: Likewise.
13687
13688         * lib/shell32.c: Moved GUID defintions from shlguid.h to this file.
13689
13690         * include/richole.h: Replaced DEFINE_GUID with extern const GUID
13691         * include/olectlid.h: Likewise
13692         * include/shlguid.h: Likewise
13693
13694         * include/coguid.h: Delete file since it was for 16 bit windows only.
13695
13696         * lib/*.def: Appended .dll to library name where needed.
13697
13698         * include/windef.h: Define _stdcall and __stdcall only if not
13699         previously defined instead of undefining first.
13700
13701         * include/dlgs.h: Put RC_INVOKED around structure defs
13702
13703         * include/intshcut.h: New file
13704         * include/isguids.h: New file
13705
13706         * lib/uuid.c: Added all COM/OLE GUIDS I know and do not know about.
13707
13708 1998-12-01  Anders Norlander  <anorland@hem2.passagen.se>
13709
13710         * include/winnt.h: Added check if _T is defined before defining it
13711
13712         * include/windows.h: Include dlgs.h if WIN32_LEAN_AND_MEAN not defined
13713
13714         * include/dlgs.h: New file
13715
13716         * include/winbase.h: Removed DllEntryPoint define
13717
13718         * include/winbase.h: Added SetupComm prototype
13719
13720         * include/rpc.h: SEH RPC functions no longer defined since they weren't
13721         supported anyway.
13722
13723         * include/basetyps.h: Removed use of COMOBJECT define, instead
13724         DECLARE_INTERFACE directly uses comobject attribute when GCC
13725         is used.
13726
13727         * include/wtypes.h: STGC enum was missing typedef
13728
13729         * include/objidl.h: ADVC enum was missing typedef
13730
13731         * include/winnt.h: Moved CHAR, SHORT and LONG definitions so
13732         they are nested within the VOID definition.
13733
13734         * include/winbase.h: Added stream ids and attributes
13735
13736         * include/winbase.h: Changed WIN32_STREAM_ID member cStreamName
13737         to an ANYSIZE_ARRAY array.
13738
13739 1998-11-26  Anders Norlander  <anorland@hem2.passagen.se>
13740
13741         * include/windef.h: defined _declspec as __declspec since
13742         some programs (like VWCL) use _declspec instead of __declspec
13743
13744         * include/winnt.h: added COMPRESS_FORMAT defines
13745
13746         * include/winbase.h: moved IS_TEXT_XXX defines to winnt.h
13747
13748         * include/winnt.h: added HEAP_XXXX defines
13749
13750         * include/winbase.h: moved HEAP_XXXX defines to winnt.h
13751
13752         * include/winnt.h: added defintions for PE/COFF from the PE and COFF
13753         specification.
13754
13755         * include/winnt.h: added NTAPI define
13756
13757 1998-11-25  Anders Norlander  <anorland@hem2.passagen.se>
13758
13759         * include/winnt.h: defined TBYTE,LPTSTR etc in terms of TCHAR
13760         instead of CHAR or WCHAR.
13761
13762         * include/winnt.h: added _T define
13763
13764         * include/winnt.h: added test for _TCHAR_DEFINED
13765
13766         * include/winnt.h: included string.h for memory macros
13767
13768         * include/prsht.h: added PSM_SETFINISHTEXT to UNICODE/ANSI test
13769
13770         * include/prsht.h: moved PSM_SETTITLEA/W to UNICODE test at end of file
13771
13772         * include/prsht.h: added PropSheet_XXX macros
13773
13774
13775 1998-11-24  Anders Norlander  <anorland@hem2.passagen.se>
13776
13777         * include/winspool.h: Changed DeletePrinterProcessor and
13778         DeletePrinterProvidor to DeletePrintXX.
13779
13780         * include/wingdi.h: Changed EMRCREATECOLORSPACE lcs member type to
13781         LOGCOLORSPACEW.
13782
13783         * include/wingdi.h: Changed prototype for CreateColorSpace to A and W
13784         variants
13785
13786         * include/wingdi.h: Likewise for GetLogColorSpace
13787
13788         * include/wingdi.h: Changed LOGCOLORSPACE to LOGCOLORSPACEA/W.
13789
13790         * include/richedit.h: Added missing defines and structures
13791
13792         * include/winuser.h: Moved EDITWORDBREAKPROCEX to include/richedit.h
13793
13794         * include/winuser.h: Added HWND_DESKTOP
13795
13796 1998-11-23  Anders Norlander  <anorland@hem2.passagen.se>
13797
13798         * Makefile: Include ChangeLog when building source
13799         distribution (srcdist)
13800
13801         * include/oleauto.h: Changed WINOLEAUTAPI and WINOLEAUTAPI_ so they
13802         are always defined as STDAPI and STDAPI_
13803
13804         * include/objbase.h: Changed WINOLEAPI and WINOLEAPI_ so they
13805         are always defined as STDAPI and STDAPI_
13806
13807         * include/objidl.h: Removed extra ';' on IStorage SetClass method
13808
13809         * include/rpcndr.h: Removed all IN and OUT from function prototypes
13810
13811         * ChangeLog started