ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/Daodan/MSYS2/mingw32/i686-w64-mingw32/include/mapiwz.h
Revision: 1166
Committed: Tue Oct 26 14:22:36 2021 UTC (4 years ago) by rossy
Content type: text/x-chdr
File size: 1320 byte(s)
Log Message:
Daodan: Replace MinGW build env with an up-to-date MSYS2 env

File Contents

# Content
1 /**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6 #ifndef _MAPIWZ_H
7 #define _MAPIWZ_H
8
9 #include <mapidefs.h>
10
11 #define WIZ_QUERYNUMPAGES (WM_USER +10)
12 #define WIZ_NEXT (WM_USER +11)
13 #define WIZ_PREV (WM_USER +12)
14
15 #define MAPI_PW_FIRST_PROFILE 0x00000001
16 #define MAPI_PW_LAUNCHED_BY_CONFIG 0x00000002
17 #define MAPI_PW_ADD_SERVICE_ONLY 0x00000004
18 #define MAPI_PW_PROVIDER_UI_ONLY 0x00000008
19 #define MAPI_PW_HIDE_SERVICES_LIST 0x00000010
20
21 #define PR_WIZARD_NO_PST_PAGE PROP_TAG(PT_BOOLEAN,0x6700)
22 #define PR_WIZARD_NO_PAB_PAGE PROP_TAG(PT_BOOLEAN,0x6701)
23
24 typedef HRESULT (WINAPI LAUNCHWIZARDENTRY)(HWND hParentWnd,ULONG ulFlags,LPCTSTR *lppszServiceNameToAdd,ULONG cbBufferMax,LPTSTR lpszNewProfileName);
25 typedef LAUNCHWIZARDENTRY *LPLAUNCHWIZARDENTRY;
26 typedef WINBOOL (WINAPI SERVICEWIZARDDLGPROC)(HWND hDlg,UINT wMsgID,WPARAM wParam,LPARAM lParam);
27 typedef SERVICEWIZARDDLGPROC *LPSERVICEWIZARDDLGPROC;
28 typedef ULONG (WINAPI WIZARDENTRY)(HINSTANCE hProviderDLLInstance,LPTSTR *lppcsResourceName,DLGPROC *lppDlgProc,LPMAPIPROP lpMapiProp,LPVOID lpMapiSupportObject);
29 typedef WIZARDENTRY *LPWIZARDENTRY;
30
31 #define LAUNCHWIZARDENTRYNAME "LAUNCHWIZARD"
32 #endif