diff options
author | George Hazan <george.hazan@gmail.com> | 2014-09-29 15:02:04 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-09-29 15:02:04 +0000 |
commit | 8f994ff592a5501018ba601d33d59a558a2d9840 (patch) | |
tree | f46da86837a043aee22a3904faeae8c4f389c164 /plugins/Import/src/miranda.cpp | |
parent | 425f0a62cef32018fb858f83d713be07c08fccc7 (diff) |
first version of metaimport, that seems to work
git-svn-id: http://svn.miranda-ng.org/main/trunk@10631 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Import/src/miranda.cpp')
-rw-r--r-- | plugins/Import/src/miranda.cpp | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/plugins/Import/src/miranda.cpp b/plugins/Import/src/miranda.cpp index 970d50b7ab..047212f816 100644 --- a/plugins/Import/src/miranda.cpp +++ b/plugins/Import/src/miranda.cpp @@ -22,19 +22,12 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "import.h"
-// =====================
-// == LOCAL VARIABLES ==
-// =====================
-
time_t dwSinceDate = 0;
TCHAR importFile[MAX_PATH];
-// ====================
-// ====================
-// == IMPLEMENTATION ==
-// ====================
-// ====================
+//=======================================================================================
+// Profile selection dialog
static void SearchForLists(HWND hwndDlg, const TCHAR *mirandaPath, const TCHAR *mirandaProf)
{
@@ -149,6 +142,9 @@ INT_PTR CALLBACK MirandaPageProc(HWND hwndDlg,UINT message,WPARAM wParam,LPARAM return FALSE;
}
+//=======================================================================================
+// Import options dialog
+
INT_PTR CALLBACK MirandaOptionsPageProc(HWND hwndDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
switch (message) {
@@ -199,6 +195,9 @@ INT_PTR CALLBACK MirandaOptionsPageProc(HWND hwndDlg, UINT message, WPARAM wPara return FALSE;
}
+//=======================================================================================
+// Advanced options dialog
+
static const UINT InControls[] = { IDC_IN_MSG, IDC_IN_URL, IDC_IN_FT, IDC_IN_OTHER };
static const UINT OutControls[] = { IDC_OUT_MSG, IDC_OUT_URL, IDC_OUT_FT, IDC_OUT_OTHER };
static const UINT SysControls[] = { IDC_CONTACTS, IDC_SYSTEM };
|