Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cmnquery.h « include « w32api « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e846a0842f4c6ff892983954ad7f0fc0d97cd3cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
 * cmnquery.h - Active Directory
 *
 * THIS SOFTWARE IS NOT COPYRIGHTED
 *
 * This source code is offered for use in the public domain.  You may use,
 * modify or distribute it freely.
 *
 * This code is distributed in the hope that it will be useful but
 * WITHOUT ANY WARRANTY.  ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
 * DISCLAIMED.  This includes but is not limited to warranties of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 *
 */
#ifndef _CMNQUERY_H
#define _CMNQUERY_H
#if __GNUC__ >= 3
#pragma GCC system_header
#endif

#ifdef __cplusplus
extern "C" {
#endif

/*--- Active Directory Reference - Active Directory Structures - Active Directory Display Structures */
#if (_WIN32_WINNT >= 0x0500)
typedef struct {
	DWORD cbStruct;
	DWORD dwFlags;
	CLSID clsid;
	HICON hIcon;
	LPWSTR pszTitle;
} CQFORM,*LPCQFORM;
#define CQFF_NOGLOBALPAGES 0x00000001
#define CQFF_ISOPTIONAL 0x00000002
typedef struct {
	DWORD cbStruct;
	DWORD dwFlags;
	LPCQPAGEPROC pPageProc;
	HINSTANCE hInstance;
	INT idPageName;
	INT idPageTemplate;
	DLGPROC pDlgProc;
	LPARAM lParam;
} CQPAGE,*LPCQPAGE;
/*********
typedef struct {
	DWORD cbStruct;
	DWORD dwFlags;
	CLSID clsidHandler;
	LPVOID pHandlerParameters;
	CLSID clsidDefaultForm;
	IPersistQuery* pPersistQuery;
	union {
		void* pFormParameters;
		IPropertyBag* ppbFormParameters;
	};
} OPENQUERYWINDOW,*LPOPENQUERYWINDOW;
*********/
#define OQWF_OKCANCEL 0x00000001
#define OQWF_DEFAULTFORM 0x00000002
#define OQWF_SINGLESELECT 0x00000004
#define OQWF_LOADQUERY 0x00000008
#define OQWF_REMOVESCOPES 0x00000010
#define OQWF_REMOVEFORMS 0x00000020
#define OQWF_ISSUEONOPEN 0x00000040
#define OQWF_SHOWOPTIONAL 0x00000080
#define OQWF_SAVEQUERYONOK 0x00000200
#define OQWF_HIDEMENUS 0x00000400
#define OQWF_HIDESEARCHUI 0x00000800
#define OQWF_PARAMISPROPERTYBAG 0x80000000
/*--- Active Directory Reference - Active Directory Functions - Active Directory Display Functions */
typedef HRESULT (CALLBACK* CQAddFormsProc)(LPARAM,LPCQFORM);
typedef HRESULT (CALLBACK* CQAddPagesProc)(LPARAM,REFCLSID,LPCQPAGE);
typedef HRESULT (CALLBACK* CQPageProc)(LPCQPAGE,HWND,UINT,WPARAM,LPARAM);
#endif /* (_WIN32_WINNT >= 0x0500) */

#ifdef __cplusplus
}
#endif
#endif