OSDN Git Service

* NEWS: Add and adjust release notes for 4.0.
[mingw/mingw-org-wsl.git] / include / cmnquery.h
1 /**
2  * @file cmnquery.h
3  * Copyright 2012, 2013 MinGW.org project
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  * 
12  * The above copyright notice and this permission notice (including the next
13  * paragraph) shall be included in all copies or substantial portions of the
14  * Software.
15  * 
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  */
24 #ifndef _CMNQUERY_H
25 #define _CMNQUERY_H
26 #pragma GCC system_header
27 #include <_mingw.h>
28
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32
33 /*--- Active Directory Reference - Active Directory Structures - Active Directory Display Structures */
34 #if (_WIN32_WINNT >= _WIN32_WINNT_WIN2K)
35 typedef struct {
36         DWORD cbStruct;
37         DWORD dwFlags;
38         CLSID clsid;
39         HICON hIcon;
40         LPWSTR pszTitle;
41 } CQFORM,*LPCQFORM;
42 #define CQFF_NOGLOBALPAGES 0x00000001
43 #define CQFF_ISOPTIONAL 0x00000002
44 typedef struct {
45         DWORD cbStruct;
46         DWORD dwFlags;
47         LPCQPAGEPROC pPageProc;
48         HINSTANCE hInstance;
49         INT idPageName;
50         INT idPageTemplate;
51         DLGPROC pDlgProc;
52         LPARAM lParam;
53 } CQPAGE,*LPCQPAGE;
54 /*********
55 typedef struct {
56         DWORD cbStruct;
57         DWORD dwFlags;
58         CLSID clsidHandler;
59         LPVOID pHandlerParameters;
60         CLSID clsidDefaultForm;
61         IPersistQuery* pPersistQuery;
62         union {
63                 void* pFormParameters;
64                 IPropertyBag* ppbFormParameters;
65         };
66 } OPENQUERYWINDOW,*LPOPENQUERYWINDOW;
67 *********/
68 #define OQWF_OKCANCEL 0x00000001
69 #define OQWF_DEFAULTFORM 0x00000002
70 #define OQWF_SINGLESELECT 0x00000004
71 #define OQWF_LOADQUERY 0x00000008
72 #define OQWF_REMOVESCOPES 0x00000010
73 #define OQWF_REMOVEFORMS 0x00000020
74 #define OQWF_ISSUEONOPEN 0x00000040
75 #define OQWF_SHOWOPTIONAL 0x00000080
76 #define OQWF_SAVEQUERYONOK 0x00000200
77 #define OQWF_HIDEMENUS 0x00000400
78 #define OQWF_HIDESEARCHUI 0x00000800
79 #define OQWF_PARAMISPROPERTYBAG 0x80000000
80 /*--- Active Directory Reference - Active Directory Functions - Active Directory Display Functions */
81 typedef HRESULT (CALLBACK* CQAddFormsProc)(LPARAM,LPCQFORM);
82 typedef HRESULT (CALLBACK* CQAddPagesProc)(LPARAM,REFCLSID,LPCQPAGE);
83 typedef HRESULT (CALLBACK* CQPageProc)(LPCQPAGE,HWND,UINT,WPARAM,LPARAM);
84 #endif /* (_WIN32_WINNT >= _WIN32_WINNT_WIN2K) */
85
86 #ifdef __cplusplus
87 }
88 #endif
89 #endif