diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-07-26 07:48:38 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-07-26 07:48:38 +0000 |
commit | 98eb3655b536fb45f97b4e6112010cf9d95fb7ac (patch) | |
tree | 203a090031affb18d043272a3adaa571fb5e1827 /plugins/NoHistory/src/stdafx.h | |
parent | 25451e77f82086f283b9b3e1be64c7fef31bdf78 (diff) |
NoHistory: common project
git-svn-id: http://svn.miranda-ng.org/main/trunk@14710 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/NoHistory/src/stdafx.h')
-rw-r--r-- | plugins/NoHistory/src/stdafx.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/plugins/NoHistory/src/stdafx.h b/plugins/NoHistory/src/stdafx.h new file mode 100644 index 0000000000..5f2476a8aa --- /dev/null +++ b/plugins/NoHistory/src/stdafx.h @@ -0,0 +1,33 @@ +#ifndef _COMMON_INC
+#define _COMMON_INC
+
+#include <windows.h>
+#include <commctrl.h>
+
+#include <win2k.h>
+#include <newpluginapi.h>
+#include <m_database.h>
+#include <m_clist.h>
+#include <m_clc.h>
+#include <m_langpack.h>
+#include <m_protocols.h>
+#include <m_options.h>
+#include <m_message.h>
+#include <m_icolib.h>
+#include <m_extraicons.h>
+
+#include "resource.h"
+#include "icons.h"
+#include "options.h"
+#include "Version.h"
+
+#define MODULE "NoHistory"
+#define DBSETTING_REMOVE "RemoveHistory"
+
+extern HINSTANCE hInst;
+
+#endif
+
+void SrmmMenu_Load();
+
+
|