summaryrefslogtreecommitdiff
path: root/plugins/StartPosition/src/stdafx.h
diff options
context:
space:
mode:
authorGoraf <22941576+Goraf@users.noreply.github.com>2017-10-22 18:19:50 +0200
committerGeorge Hazan <ghazan@miranda.im>2017-10-22 19:19:50 +0300
commit957da0541115fb11626cdff5e5f95ac2daf5b100 (patch)
tree6a4e376eeb26353c20292214ae62c038a3f2ce4c /plugins/StartPosition/src/stdafx.h
parent12b040f92867b40185e52f22ac241da99fa28708 (diff)
StartPosition: move options to UI classes (#1007)
* StartPosition: move options to UI classes * StartPosition: rearrange controls to correct TABSTOP path * StartPosition: futher switch to UI classes
Diffstat (limited to 'plugins/StartPosition/src/stdafx.h')
-rw-r--r--plugins/StartPosition/src/stdafx.h27
1 files changed, 18 insertions, 9 deletions
diff --git a/plugins/StartPosition/src/stdafx.h b/plugins/StartPosition/src/stdafx.h
index b962157adc..27bef6bf2c 100644
--- a/plugins/StartPosition/src/stdafx.h
+++ b/plugins/StartPosition/src/stdafx.h
@@ -1,39 +1,48 @@
/*
-
StartPosition plugin for Miranda NG
Copyright (C) 2005-2008 Felipe Brahm - souFrag
ICQ#50566818
http://www.soufrag.cl
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2 of the License, or
-(at your option) any later version.
+Copyright (C) 2012-17 Miranda NG project (https://miranda-ng.org)
+
+This program is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License
+as published by the Free Software Foundation version 2
+of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
-You should have received a copy of the GNU General Public License along
-with this program; if not, write to the Free Software Foundation, Inc.,
-51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+You should have received a copy of the GNU General Public License
+along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#pragma once
#include <windows.h>
#include <newpluginapi.h>
#include <m_database.h>
+#include <m_gui.h>
#include <m_langpack.h>
-#include <m_utils.h>
#include <m_options.h>
+#include <m_utils.h>
#include "resource.h"
#include "version.h"
+extern HINSTANCE g_hInst;
+
#define MODULE_NAME "StartPosition"
+#define CLIST_MODULE_NAME "CList"
#define dbERROR -999999
#define RIGHT 1
#define LEFT 0
+
+#include "options.h"
+
+extern int OptInitialise(WPARAM wParam, LPARAM);