]> git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/missing.h
Don't redefine symbols already defined in latest MinGW headers.
[wxWidgets.git] / include / wx / msw / missing.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/missing.h
3 // Purpose: Declarations for parts of the Win32 SDK that are missing in
4 // the versions that come with some compilers
5 // Created: 2002/04/23
6 // RCS-ID: $Id$
7 // Copyright: (c) 2002 Mattia Barbon
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
10
11 #ifndef _WX_MISSING_H_
12 #define _WX_MISSING_H_
13
14 /*
15 * The following are required for VC++ 6.
16 */
17
18 // Needed by cursor.cpp
19 #ifndef IDC_HAND
20 #define IDC_HAND MAKEINTRESOURCE(32649)
21 #endif
22
23 // Needed by strconv.cpp
24 #ifndef WC_NO_BEST_FIT_CHARS
25 #define WC_NO_BEST_FIT_CHARS 0x400
26 #endif
27
28 #ifndef WM_CONTEXTMENU
29 #define WM_CONTEXTMENU 0x007B
30 #endif
31
32 #ifndef WM_CHANGEUISTATE
33 #define WM_CHANGEUISTATE 0x0127
34 #endif
35
36 #ifndef WM_UPDATEUISTATE
37 #define WM_UPDATEUISTATE 0x0128
38 #endif
39
40 #ifndef WM_QUERYUISTATE
41 #define WM_QUERYUISTATE 0x0129
42 #endif
43
44 #ifndef WM_PRINTCLIENT
45 #define WM_PRINTCLIENT 0x318
46 #endif
47
48 #ifndef DT_HIDEPREFIX
49 #define DT_HIDEPREFIX 0x00100000
50 #endif
51
52 // Needed by toplevel.cpp
53 #ifndef UIS_SET
54 #define UIS_SET 1
55 #define UIS_CLEAR 2
56 #define UIS_INITIALIZE 3
57 #endif
58
59 #ifndef UISF_HIDEFOCUS
60 #define UISF_HIDEFOCUS 1
61 #endif
62
63 #ifndef UISF_HIDEACCEL
64 #define UISF_HIDEACCEL 2
65 #endif
66
67 #ifndef OFN_EXPLORER
68 #define OFN_EXPLORER 0x00080000
69 #endif
70
71 #ifndef OFN_ENABLESIZING
72 #define OFN_ENABLESIZING 0x00800000
73 #endif
74
75 // Needed by window.cpp
76 #if wxUSE_MOUSEWHEEL
77 #ifndef WM_MOUSEWHEEL
78 #define WM_MOUSEWHEEL 0x020A
79 #endif
80 #ifndef WHEEL_DELTA
81 #define WHEEL_DELTA 120
82 #endif
83 #ifndef SPI_GETWHEELSCROLLLINES
84 #define SPI_GETWHEELSCROLLLINES 104
85 #endif
86 #endif // wxUSE_MOUSEWHEEL
87
88 // Needed by window.cpp
89 #ifndef VK_OEM_1
90 #define VK_OEM_1 0xBA
91 #define VK_OEM_2 0xBF
92 #define VK_OEM_3 0xC0
93 #define VK_OEM_4 0xDB
94 #define VK_OEM_5 0xDC
95 #define VK_OEM_6 0xDD
96 #define VK_OEM_7 0xDE
97 #endif
98
99 #ifndef VK_OEM_COMMA
100 #define VK_OEM_PLUS 0xBB
101 #define VK_OEM_COMMA 0xBC
102 #define VK_OEM_MINUS 0xBD
103 #define VK_OEM_PERIOD 0xBE
104 #endif
105
106 #ifndef SM_TABLETPC
107 #define SM_TABLETPC 86
108 #endif
109
110 #ifndef INKEDIT_CLASS
111 # define INKEDIT_CLASSW L"INKEDIT"
112 # ifdef UNICODE
113 # define INKEDIT_CLASS INKEDIT_CLASSW
114 # else
115 # define INKEDIT_CLASS "INKEDIT"
116 # endif
117 #endif
118
119 #ifndef EM_SETINKINSERTMODE
120 # define EM_SETINKINSERTMODE (WM_USER + 0x0204)
121 #endif
122
123 #ifndef EM_SETUSEMOUSEFORINPUT
124 #define EM_SETUSEMOUSEFORINPUT (WM_USER + 0x224)
125 #endif
126
127 #ifndef TPM_RECURSE
128 #define TPM_RECURSE 1
129 #endif
130
131
132 #ifndef WS_EX_LAYOUTRTL
133 #define WS_EX_LAYOUTRTL 0x00400000
134 #endif
135
136 #ifndef WS_EX_COMPOSITED
137 #define WS_EX_COMPOSITED 0x02000000L
138 #endif
139
140 #ifndef WS_EX_LAYERED
141 #define WS_EX_LAYERED 0x00080000
142 #endif
143
144 #ifndef LWA_ALPHA
145 #define LWA_ALPHA 2
146 #endif
147
148 #ifndef QS_ALLPOSTMESSAGE
149 #define QS_ALLPOSTMESSAGE 0
150 #endif
151
152 /*
153 * The following are required for VC++ 5 when the PSDK is not available.
154 */
155
156 #if defined __VISUALC__ && __VISUALC__ <= 1100
157
158 #ifndef VER_NT_WORKSTATION
159
160 typedef struct _OSVERSIONINFOEXA {
161 DWORD dwOSVersionInfoSize;
162 DWORD dwMajorVersion;
163 DWORD dwMinorVersion;
164 DWORD dwBuildNumber;
165 DWORD dwPlatformId;
166 CHAR szCSDVersion[128];
167 WORD wServicePackMajor;
168 WORD wServicePackMinor;
169 WORD wSuiteMask;
170 BYTE wProductType;
171 BYTE wReserved;
172 } OSVERSIONINFOEXA, *POSVERSIONINFOEXA, *LPOSVERSIONINFOEXA;
173 typedef struct _OSVERSIONINFOEXW {
174 DWORD dwOSVersionInfoSize;
175 DWORD dwMajorVersion;
176 DWORD dwMinorVersion;
177 DWORD dwBuildNumber;
178 DWORD dwPlatformId;
179 WCHAR szCSDVersion[128];
180 WORD wServicePackMajor;
181 WORD wServicePackMinor;
182 WORD wSuiteMask;
183 BYTE wProductType;
184 BYTE wReserved;
185 } OSVERSIONINFOEXW, *POSVERSIONINFOEXW, *LPOSVERSIONINFOEXW;
186
187 #ifdef UNICODE
188 typedef OSVERSIONINFOW OSVERSIONINFO,*POSVERSIONINFO,*LPOSVERSIONINFO;
189 typedef OSVERSIONINFOEXW OSVERSIONINFOEX,*POSVERSIONINFOEX,*LPOSVERSIONINFOEX;
190 #else
191 typedef OSVERSIONINFOA OSVERSIONINFO,*POSVERSIONINFO,*LPOSVERSIONINFO;
192 typedef OSVERSIONINFOEXA OSVERSIONINFOEX,*POSVERSIONINFOEX,*LPOSVERSIONINFOEX;
193 #endif
194
195 #endif // defined VER_NT_WORKSTATION
196
197 #ifndef CP_SYMBOL
198 #define CP_SYMBOL 42
199 #endif
200
201 // NMLVCUSTOMDRAW originally didn't have the iSubItem member. It was added
202 // with IE4, as was IPN_FIRST which is used as a test :-(.
203 //
204 #ifndef IPN_FIRST
205
206 typedef struct wxtagNMLVCUSTOMDRAW_ {
207 NMCUSTOMDRAW nmcd;
208 COLORREF clrText;
209 COLORREF clrTextBk;
210 int iSubItem;
211 } wxNMLVCUSTOMDRAW_, *wxLPNMLVCUSTOMDRAW_;
212
213 #define NMLVCUSTOMDRAW wxNMLVCUSTOMDRAW_
214 #define LPNMLVCUSTOMDRAW wxLPNMLVCUSTOMDRAW_
215
216 #endif // defined IPN_FIRST
217
218 #endif // defined __VISUALC__ && __VISUALC__ <= 1100
219
220 // ----------------------------------------------------------------------------
221 // menu stuff
222 // ----------------------------------------------------------------------------
223
224 #ifndef MIIM_BITMAP
225 #define MIIM_STRING 0x00000040
226 #define MIIM_BITMAP 0x00000080
227 #define MIIM_FTYPE 0x00000100
228 #define HBMMENU_CALLBACK ((HBITMAP) -1)
229
230 typedef struct tagMENUINFO
231 {
232 DWORD cbSize;
233 DWORD fMask;
234 DWORD dwStyle;
235 UINT cyMax;
236 HBRUSH hbrBack;
237 DWORD dwContextHelpID;
238 DWORD dwMenuData;
239 } MENUINFO, FAR *LPMENUINFO;
240 #endif // MIIM_BITMAP &c
241
242 // ----------------------------------------------------------------------------
243 // definitions related to ListView and Header common controls, needed by
244 // msw/listctrl.cpp and msw/headerctrl.cpp
245 // ----------------------------------------------------------------------------
246
247 #ifndef I_IMAGENONE
248 #define I_IMAGENONE (-2)
249 #endif
250
251 #ifndef LVS_EX_FULLROWSELECT
252 #define LVS_EX_FULLROWSELECT 0x00000020
253 #endif
254
255 // LVS_EX_LABELTIP is not supported by Windows CE, don't define it there
256 #if !defined(LVS_EX_LABELTIP) && !defined(__WXWINCE__)
257 #define LVS_EX_LABELTIP 0x00004000
258 #endif
259
260 #ifndef LVS_EX_SUBITEMIMAGES
261 #define LVS_EX_SUBITEMIMAGES 0x00000002
262 #endif
263
264 #ifndef HDN_GETDISPINFOW
265 #define HDN_GETDISPINFOW (HDN_FIRST-29)
266 #endif
267
268 #ifndef HDS_HOTTRACK
269 #define HDS_HOTTRACK 4
270 #endif
271 #ifndef HDS_FLAT
272 #define HDS_FLAT 0x0200
273 #endif
274
275 #ifndef HDF_SORTUP
276 #define HDF_SORTUP 0x0400
277 #define HDF_SORTDOWN 0x0200
278 #endif
279
280 /*
281 * In addition to the above, the following are required for several compilers.
282 */
283
284 #if !defined(CCS_VERT)
285 #define CCS_VERT 0x00000080L
286 #endif
287
288 #if !defined(CCS_RIGHT)
289 #define CCS_RIGHT (CCS_VERT|CCS_BOTTOM)
290 #endif
291
292 #if !defined(TB_SETDISABLEDIMAGELIST)
293 #define TB_SETDISABLEDIMAGELIST (WM_USER + 54)
294 #endif // !defined(TB_SETDISABLEDIMAGELIST)
295
296 #ifndef CFM_BACKCOLOR
297 #define CFM_BACKCOLOR 0x04000000
298 #endif
299
300 #ifndef HANGUL_CHARSET
301 #define HANGUL_CHARSET 129
302 #endif
303
304 #ifndef CCM_SETUNICODEFORMAT
305 #define CCM_SETUNICODEFORMAT 8197
306 #endif
307
308 // ----------------------------------------------------------------------------
309 // Tree control
310 // ----------------------------------------------------------------------------
311
312 #ifndef TV_FIRST
313 #define TV_FIRST 0x1100
314 #endif
315
316 #ifndef TVS_FULLROWSELECT
317 #define TVS_FULLROWSELECT 0x1000
318 #endif
319
320 #ifndef TVM_SETBKCOLOR
321 #define TVM_SETBKCOLOR (TV_FIRST + 29)
322 #define TVM_SETTEXTCOLOR (TV_FIRST + 30)
323 #endif
324
325 /*
326 * The following are required for BC++ 5.5 (none at present.)
327 */
328
329 /*
330 * The following are specifically required for Digital Mars C++
331 */
332
333 #ifdef __DMC__
334
335 #ifndef VER_NT_WORKSTATION
336 typedef struct _OSVERSIONINFOEX {
337 DWORD dwOSVersionInfoSize;
338 DWORD dwMajorVersion;
339 DWORD dwMinorVersion;
340 DWORD dwBuildNumber;
341 DWORD dwPlatformId;
342 TCHAR szCSDVersion[ 128 ];
343 WORD wServicePackMajor;
344 WORD wServicePackMinor;
345 WORD wSuiteMask;
346 BYTE wProductType;
347 BYTE wReserved;
348 } OSVERSIONINFOEX;
349 #endif // !defined(VER_NT_WORKSTATION)
350
351 #ifndef _TrackMouseEvent
352 #define _TrackMouseEvent TrackMouseEvent
353 #endif
354
355 #ifndef LVM_SETEXTENDEDLISTVIEWSTYLE
356 #define LVM_SETEXTENDEDLISTVIEWSTYLE (0x1000 + 54)
357 #endif
358
359 #ifndef LVM_GETSUBITEMRECT
360 #define LVM_GETSUBITEMRECT (0x1000 + 56)
361 #endif
362
363 #ifndef LVCF_IMAGE
364 #define LVCF_IMAGE 0x0010
365 #endif
366
367 #ifndef Header_GetItemRect
368 #define Header_GetItemRect(w,i,r) \
369 (BOOL)SendMessage((w),HDM_GETITEMRECT,(WPARAM)(i),(LPARAM)(r))
370 #endif
371
372 #ifndef HDM_GETITEMRECT
373 #define HDM_GETITEMRECT (HDM_FIRST+7)
374 #endif
375
376 #ifndef ListView_GetHeader
377 #define ListView_GetHeader(w) (HWND)SendMessage((w),LVM_GETHEADER,0,0)
378 #endif
379
380 #ifndef ListView_GetSubItemRect
381 #define ListView_GetSubItemRect(w, i, s, c, p) (HWND)SendMessage(w,LVM_GETSUBITEMRECT,i, ((p) ? ((((LPRECT)(p))->top = s), (((LPRECT)(p))->left = c), (LPARAM)(p)) : (LPARAM)(LPRECT)NULL))
382 #endif
383
384 #ifndef LVM_GETHEADER
385 #define LVM_GETHEADER (LVM_FIRST+31)
386 #endif
387
388 #ifndef HDLAYOUT
389 #define HDLAYOUT HD_LAYOUT
390 #endif
391
392 #ifndef HDITEM
393 #define HDITEM HD_ITEM
394 #endif
395
396 #ifndef NMHEADER
397 #define NMHEADER HD_NOTIFY
398 #endif
399
400 #ifndef HDS_DRAGDROP
401 #define HDS_DRAGDROP 0x0040
402 #endif
403 #ifndef HDS_FULLDRAG
404 #define HDS_FULLDRAG 0x0080
405 #endif
406
407
408 #ifndef HDN_BEGINDRAG
409 #define HDN_BEGINDRAG (HDN_FIRST - 11)
410 #endif
411
412 #ifndef HDN_ENDDRAG
413 #define HDN_ENDDRAG (HDN_FIRST - 10)
414 #endif
415
416 #ifndef LVSICF_NOSCROLL
417 #define LVSICF_NOINVALIDATEALL 0x0001
418 #define LVSICF_NOSCROLL 0x0002
419 #endif
420
421 #ifndef CP_SYMBOL
422 #define CP_SYMBOL 42
423 #endif
424
425 // ----------------------------------------------------------------------------
426 // wxDisplay
427 // ----------------------------------------------------------------------------
428
429 // The windows headers with Digital Mars lack some typedefs.
430 // typedef them as my_XXX and then #define to rename to XXX in case
431 // a newer version of Digital Mars fixes the headers
432 // (or up to date PSDK is in use with older version)
433 // also we use any required definition (MONITOR_DEFAULTTONULL) to recognize
434 // whether whole missing block needs to be included
435
436 #ifndef MONITOR_DEFAULTTONULL
437
438 #define HMONITOR_DECLARED
439 DECLARE_HANDLE(HMONITOR);
440 typedef BOOL(CALLBACK* my_MONITORENUMPROC)(HMONITOR,HDC,LPRECT,LPARAM);
441 #define MONITORENUMPROC my_MONITORENUMPROC
442 typedef struct my_tagMONITORINFO {
443 DWORD cbSize;
444 RECT rcMonitor;
445 RECT rcWork;
446 DWORD dwFlags;
447 } my_MONITORINFO,*my_LPMONITORINFO;
448 #define MONITORINFO my_MONITORINFO
449 #define LPMONITORINFO my_LPMONITORINFO
450
451 typedef struct my_MONITORINFOEX : public my_tagMONITORINFO
452 {
453 TCHAR szDevice[CCHDEVICENAME];
454 } my_MONITORINFOEX, *my_LPMONITORINFOEX;
455 #define MONITORINFOEX my_MONITORINFOEX
456 #define LPMONITORINFOEX my_LPMONITORINFOEX
457
458 #ifndef MONITOR_DEFAULTTONULL
459 #define MONITOR_DEFAULTTONULL 0
460 #endif // MONITOR_DEFAULTTONULL
461
462 #ifndef MONITORINFOF_PRIMARY
463 #define MONITORINFOF_PRIMARY 1
464 #endif // MONITORINFOF_PRIMARY
465
466 #ifndef DDENUM_ATTACHEDSECONDARYDEVICES
467 #define DDENUM_ATTACHEDSECONDARYDEVICES 1
468 #endif
469
470 #endif // MONITOR_DEFAULTTONULL
471
472 // ----------------------------------------------------------------------------
473 // Tree control
474 // ----------------------------------------------------------------------------
475
476 #ifndef TVIS_FOCUSED
477 #define TVIS_FOCUSED 0x0001
478 #endif
479
480 #ifndef TVS_CHECKBOXES
481 #define TVS_CHECKBOXES 0x0100
482 #endif
483
484 #ifndef TVITEM
485 #define TVITEM TV_ITEM
486 #endif
487
488 #endif
489 // DMC++
490
491 /*
492 * The following are specifically required for OpenWatcom C++ (none at present)
493 */
494
495 #if defined(__WATCOMC__)
496 #endif
497
498 /*
499 * The following are specifically required for MinGW (none at present)
500 */
501
502 #if defined (__MINGW32__)
503
504 #if !wxCHECK_W32API_VERSION(3,1)
505
506 #include <windows.h>
507 #include "wx/msw/winundef.h"
508
509 typedef struct
510 {
511 RECT rgrc[3];
512 WINDOWPOS *lppos;
513 } NCCALCSIZE_PARAMS, *LPNCCALCSIZE_PARAMS;
514
515 #endif
516
517 #endif
518
519 //Various defines that will be needed by mingw and possibly VC++6
520 //Used by the webview library
521
522 #ifndef DISPID_COMMANDSTATECHANGE
523 #define DISPID_COMMANDSTATECHANGE 105
524 #endif
525
526 #ifndef DISPID_NAVIGATECOMPLETE2
527 #define DISPID_NAVIGATECOMPLETE2 252
528 #endif
529
530 #ifndef DISPID_NAVIGATEERROR
531 #define DISPID_NAVIGATEERROR 271
532 #endif
533
534 #ifndef DISPID_NEWWINDOW3
535 #define DISPID_NEWWINDOW3 273
536 #endif
537
538 #ifndef INET_E_ERROR_FIRST
539 #define INET_E_ERROR_FIRST 0x800C0002L
540 #endif
541
542 #ifndef INET_E_INVALID_URL
543 #define INET_E_INVALID_URL 0x800C0002L
544 #endif
545
546 #ifndef INET_E_NO_SESSION
547 #define INET_E_NO_SESSION 0x800C0003L
548 #endif
549
550 #ifndef INET_E_CANNOT_CONNECT
551 #define INET_E_CANNOT_CONNECT 0x800C0004L
552 #endif
553
554 #ifndef INET_E_RESOURCE_NOT_FOUND
555 #define INET_E_RESOURCE_NOT_FOUND 0x800C0005L
556 #endif
557
558 #ifndef INET_E_OBJECT_NOT_FOUND
559 #define INET_E_OBJECT_NOT_FOUND 0x800C0006L
560 #endif
561
562 #ifndef INET_E_DATA_NOT_AVAILABLE
563 #define INET_E_DATA_NOT_AVAILABLE 0x800C0007L
564 #endif
565
566 #ifndef INET_E_DOWNLOAD_FAILURE
567 #define INET_E_DOWNLOAD_FAILURE 0x800C0008L
568 #endif
569
570 #ifndef INET_E_AUTHENTICATION_REQUIRED
571 #define INET_E_AUTHENTICATION_REQUIRED 0x800C0009L
572 #endif
573
574 #ifndef INET_E_NO_VALID_MEDIA
575 #define INET_E_NO_VALID_MEDIA 0x800C000AL
576 #endif
577
578 #ifndef INET_E_CONNECTION_TIMEOUT
579 #define INET_E_CONNECTION_TIMEOUT 0x800C000BL
580 #endif
581
582 #ifndef INET_E_INVALID_REQUEST
583 #define INET_E_INVALID_REQUEST 0x800C000CL
584 #endif
585
586 #ifndef INET_E_UNKNOWN_PROTOCOL
587 #define INET_E_UNKNOWN_PROTOCOL 0x800C000DL
588 #endif
589
590 #ifndef INET_E_SECURITY_PROBLEM
591 #define INET_E_SECURITY_PROBLEM 0x800C000EL
592 #endif
593
594 #ifndef INET_E_CANNOT_LOAD_DATA
595 #define INET_E_CANNOT_LOAD_DATA 0x800C000FL
596 #endif
597
598 #ifndef INET_E_CANNOT_INSTANTIATE_OBJECT
599 #define INET_E_CANNOT_INSTANTIATE_OBJECT 0x800C0010L
600 #endif
601
602 #ifndef INET_E_QUERYOPTION_UNKNOWN
603 #define INET_E_QUERYOPTION_UNKNOWN 0x800C0013L
604 #endif
605
606 #ifndef INET_E_REDIRECT_FAILED
607 #define INET_E_REDIRECT_FAILED 0x800C0014L
608 #endif
609
610 #ifndef INET_E_REDIRECT_TO_DIR
611 #define INET_E_REDIRECT_TO_DIR 0x800C0015L
612 #endif
613
614 #ifndef INET_E_CANNOT_LOCK_REQUEST
615 #define INET_E_CANNOT_LOCK_REQUEST 0x800C0016L
616 #endif
617
618 #ifndef INET_E_USE_EXTEND_BINDING
619 #define INET_E_USE_EXTEND_BINDING 0x800C0017L
620 #endif
621
622 #ifndef INET_E_TERMINATED_BIND
623 #define INET_E_TERMINATED_BIND 0x800C0018L
624 #endif
625
626 #ifndef INET_E_INVALID_CERTIFICATE
627 #define INET_E_INVALID_CERTIFICATE 0x800C0019L
628 #endif
629
630 #ifndef INET_E_CODE_DOWNLOAD_DECLINED
631 #define INET_E_CODE_DOWNLOAD_DECLINED 0x800C0100L
632 #endif
633
634 #ifndef INET_E_RESULT_DISPATCHED
635 #define INET_E_RESULT_DISPATCHED 0x800C0200L
636 #endif
637
638 #ifndef INET_E_CANNOT_REPLACE_SFP_FILE
639 #define INET_E_CANNOT_REPLACE_SFP_FILE 0x800C0300L
640 #endif
641
642 #ifndef INET_E_CODE_INSTALL_BLOCKED_BY_HASH_POLICY
643 #define INET_E_CODE_INSTALL_BLOCKED_BY_HASH_POLICY 0x800C0500L
644 #endif
645
646 #ifndef INET_E_CODE_INSTALL_SUPPRESSED
647 #define INET_E_CODE_INSTALL_SUPPRESSED 0x800C0400L
648 #endif
649
650 //We need to check if we are using MinGW or mingw-w64 as their
651 //definitions are different
652
653 #ifdef __MINGW32__
654 #include <_mingw.h>
655 #endif
656
657 #if defined(__MINGW32__) && !defined(__MINGW64_VERSION_MAJOR)
658 typedef enum CommandStateChangeConstants {
659 CSC_UPDATECOMMANDS = (int) 0xFFFFFFFF,
660 CSC_NAVIGATEFORWARD = 0x1,
661 CSC_NAVIGATEBACK = 0x2
662 } CommandStateChangeConstants;
663 #endif
664
665 //Definitions from w64 mingw-runtime package, in the public domain
666 //Used by webview
667
668 //The GUIDs are currently not defined in either mingw or mingw-w64
669
670 #ifdef __MINGW32__
671 DEFINE_GUID(IID_IInternetProtocolRoot,0x79eac9e3,0xbaf9,0x11ce,0x8c,0x82,0,0xaa,0,0x4b,0xa9,0xb);
672 DEFINE_GUID(IID_IInternetProtocol,0x79eac9e4,0xbaf9,0x11ce,0x8c,0x82,0,0xaa,0,0x4b,0xa9,0xb);
673 #endif
674
675
676 #if defined(__MINGW32__) && !defined(__MINGW64_VERSION_MAJOR)
677
678 #define REFRESH_NORMAL 0
679 #define REFRESH_COMPLETELY 3
680
681 EXTERN_C const IID CLSID_FileProtocol;
682
683
684 typedef enum __MIDL_IBindStatusCallback_0006
685 {
686 BSCF_FIRSTDATANOTIFICATION = 0x1,
687 BSCF_INTERMEDIATEDATANOTIFICATION = 0x2,
688 BSCF_LASTDATANOTIFICATION = 0x4,
689 BSCF_DATAFULLYAVAILABLE = 0x8,
690 BSCF_AVAILABLEDATASIZEUNKNOWN = 0x10
691 } BSCF;
692
693 typedef struct _tagPROTOCOLDATA
694 {
695 DWORD grfFlags;
696 DWORD dwState;
697 LPVOID pData;
698 ULONG cbData;
699 } PROTOCOLDATA;
700
701 typedef struct _tagBINDINFO
702 {
703 ULONG cbSize;
704 LPWSTR szExtraInfo;
705 STGMEDIUM stgmedData;
706 DWORD grfBindInfoF;
707 DWORD dwBindVerb;
708 LPWSTR szCustomVerb;
709 DWORD cbstgmedData;
710 DWORD dwOptions;
711 DWORD dwOptionsFlags;
712 DWORD dwCodePage;
713 SECURITY_ATTRIBUTES securityAttributes;
714 IID iid;
715 IUnknown *pUnk;
716 DWORD dwReserved;
717 } BINDINFO;
718
719
720 struct IInternetBindInfo : public IUnknown
721 {
722 public:
723 virtual HRESULT WINAPI GetBindInfo(DWORD *grfBINDF,BINDINFO *pbindinfo) = 0;
724 virtual HRESULT WINAPI GetBindString(ULONG ulStringType,LPOLESTR *ppwzStr,
725 ULONG cEl,ULONG *pcElFetched) = 0;
726 };
727
728 struct IInternetProtocolSink : public IUnknown
729 {
730 public:
731 virtual HRESULT WINAPI Switch(PROTOCOLDATA *pProtocolData) = 0;
732 virtual HRESULT WINAPI ReportProgress(ULONG ulStatusCode,
733 LPCWSTR szStatusText) = 0;
734 virtual HRESULT WINAPI ReportData(DWORD grfBSCF,ULONG ulProgress,
735 ULONG ulProgressMax) = 0;
736 virtual HRESULT WINAPI ReportResult(HRESULT hrResult,DWORD dwError,
737 LPCWSTR szResult) = 0;
738 };
739
740 struct IInternetProtocolRoot : public IUnknown
741 {
742 public:
743 virtual HRESULT WINAPI Start(LPCWSTR szUrl,IInternetProtocolSink *pOIProtSink,
744 IInternetBindInfo *pOIBindInfo,DWORD grfPI,
745 HANDLE_PTR dwReserved) = 0;
746 virtual HRESULT WINAPI Continue(PROTOCOLDATA *pProtocolData) = 0;
747 virtual HRESULT WINAPI Abort(HRESULT hrReason,DWORD dwOptions) = 0;
748 virtual HRESULT WINAPI Terminate(DWORD dwOptions) = 0;
749 virtual HRESULT WINAPI Suspend(void) = 0;
750 virtual HRESULT WINAPI Resume(void) = 0;
751 };
752
753 struct IInternetProtocol : public IInternetProtocolRoot
754 {
755 public:
756 virtual HRESULT WINAPI Read(void *pv,ULONG cb,ULONG *pcbRead) = 0;
757 virtual HRESULT WINAPI Seek(LARGE_INTEGER dlibMove,DWORD dwOrigin,
758 ULARGE_INTEGER *plibNewPosition) = 0;
759 virtual HRESULT WINAPI LockRequest(DWORD dwOptions) = 0;
760 virtual HRESULT WINAPI UnlockRequest(void) = 0;
761 };
762
763 struct IInternetSession : public IUnknown
764 {
765 public:
766 virtual HRESULT WINAPI RegisterNameSpace(IClassFactory *pCF,REFCLSID rclsid,
767 LPCWSTR pwzProtocol,
768 ULONG cPatterns,
769 const LPCWSTR *ppwzPatterns,
770 DWORD dwReserved) = 0;
771 virtual HRESULT WINAPI UnregisterNameSpace(IClassFactory *pCF,
772 LPCWSTR pszProtocol) = 0;
773 virtual HRESULT WINAPI RegisterMimeFilter(IClassFactory *pCF,
774 REFCLSID rclsid,
775 LPCWSTR pwzType) = 0;
776 virtual HRESULT WINAPI UnregisterMimeFilter(IClassFactory *pCF,
777 LPCWSTR pwzType) = 0;
778 virtual HRESULT WINAPI CreateBinding(LPBC pBC,LPCWSTR szUrl,
779 IUnknown *pUnkOuter,IUnknown **ppUnk,
780 IInternetProtocol **ppOInetProt,
781 DWORD dwOption) = 0;
782 virtual HRESULT WINAPI SetSessionOption(DWORD dwOption,LPVOID pBuffer,
783 DWORD dwBufferLength,
784 DWORD dwReserved) = 0;
785 virtual HRESULT WINAPI GetSessionOption(DWORD dwOption,LPVOID pBuffer,
786 DWORD *pdwBufferLength,
787 DWORD dwReserved) = 0;
788 };
789
790 #endif
791
792 /*
793 * In addition to the declarations for VC++, the following are required for WinCE
794 */
795
796 #ifdef __WXWINCE__
797 #include "wx/msw/wince/missing.h"
798 #endif
799
800 /*
801 * The following are specifically required for Wine
802 */
803
804 #ifdef __WINE__
805 #ifndef ENUM_CURRENT_SETTINGS
806 #define ENUM_CURRENT_SETTINGS ((DWORD)-1)
807 #endif
808 #ifndef BROADCAST_QUERY_DENY
809 #define BROADCAST_QUERY_DENY 1112363332
810 #endif
811 #endif // defined __WINE__
812
813 #ifndef INVALID_FILE_ATTRIBUTES
814 #define INVALID_FILE_ATTRIBUTES ((DWORD)-1)
815 #endif
816
817 #endif
818 // _WX_MISSING_H_