diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-06-22 20:03:58 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-06-22 20:03:58 +0000 |
commit | 5e8571847f3ccaa545a9fc1d26466f22ccce2d79 (patch) | |
tree | 316d11974da0296f8b944709a416a0ae6d72b818 /plugins/AutoRun/autorun.h | |
parent | be99fef98132551217755324ec714af0f893056e (diff) |
Autorun Unicode
git-svn-id: http://svn.miranda-ng.org/main/trunk@533 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AutoRun/autorun.h')
-rw-r--r-- | plugins/AutoRun/autorun.h | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/plugins/AutoRun/autorun.h b/plugins/AutoRun/autorun.h index 8c621e2546..4d0900fcf0 100644 --- a/plugins/AutoRun/autorun.h +++ b/plugins/AutoRun/autorun.h @@ -1,10 +1,17 @@ -#define IDD_OPT_AUTORUN 101
-#define IDC_AUTORUN 102
-
#define _CRT_SECURE_NO_WARNINGS
-
#define MIRANDA_VER 0x0A00
-#define SUB_KEY "Software\\Microsoft\\Windows\\CurrentVersion\\Run"
+
+#include <windows.h>
+
+#include <newpluginapi.h>
+#include <m_langpack.h>
+#include <m_options.h>
+#include <m_database.h>
+#include <win2k.h>
+
+#include "resource.h"
+
+#define SUB_KEY _T("Software\\Microsoft\\Windows\\CurrentVersion\\Run")
#define ModuleName "Autorun"
// Plugin UUID for New plugin loader
@@ -14,4 +21,3 @@ #define MIID_AUTORUN {0xeb0465e2, 0xceee, 0x11db, { 0x83, 0xef, 0xc1, 0xbf, 0x55, 0xd8, 0x95, 0x93}}
HKEY ROOT_KEY = HKEY_CURRENT_USER;
-
|