summaryrefslogtreecommitdiff
path: root/plugins/Import/src/stdafx.h
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2018-03-21 18:08:40 +0300
committerGeorge Hazan <ghazan@miranda.im>2018-03-21 18:09:19 +0300
commita334516a231bc13b93e20aa59023e37d7c4ba666 (patch)
tree2bdd9b1f02df76cef33ed68002d21b3e0d5b6164 /plugins/Import/src/stdafx.h
parentf7001757a832e948645713a94739f66b07d5f2c1 (diff)
Import: the wizard dialog to use initialization structure instead of PostMessage
Diffstat (limited to 'plugins/Import/src/stdafx.h')
-rw-r--r--plugins/Import/src/stdafx.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/plugins/Import/src/stdafx.h b/plugins/Import/src/stdafx.h
index 0d201a39cb..21007d9136 100644
--- a/plugins/Import/src/stdafx.h
+++ b/plugins/Import/src/stdafx.h
@@ -67,6 +67,12 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
void AddMessage(const wchar_t* fmt, ...);
+struct WizardDlgParam
+{
+ WPARAM wParam;
+ LPARAM lParam;
+};
+
INT_PTR CALLBACK WizardIntroPageProc(HWND hdlg, UINT message, WPARAM wParam, LPARAM lParam);
INT_PTR CALLBACK ProgressPageProc(HWND hdlg, UINT message, WPARAM wParam, LPARAM lParam);
INT_PTR CALLBACK MirandaPageProc(HWND hdlg, UINT message, WPARAM wParam, LPARAM lParam);
@@ -79,7 +85,7 @@ bool IsDuplicateEvent(MCONTACT hContact, DBEVENTINFO dbei);
int CreateGroup(const wchar_t *name, MCONTACT hContact);
extern HINSTANCE hInst;
-extern HWND hwndAccMerge;
+extern HWND hwndWizard, hwndAccMerge;
extern int nImportOptions;
extern wchar_t importFile[];
extern time_t dwSinceDate;