summaryrefslogtreecommitdiff
path: root/plugins/AutoRun/src/autorun.h
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2012-07-05 10:15:32 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2012-07-05 10:15:32 +0000
commit9ee9547340e785ca4eb38294d975d6e1a3a567f2 (patch)
tree65fe6c30298656e053a743ce560f8bb341a0b680 /plugins/AutoRun/src/autorun.h
parent1927dce5b48f9f5b77bca38ca01c8ce6f25097f3 (diff)
AutoRun: changed folder structure
git-svn-id: http://svn.miranda-ng.org/main/trunk@766 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AutoRun/src/autorun.h')
-rw-r--r--plugins/AutoRun/src/autorun.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/plugins/AutoRun/src/autorun.h b/plugins/AutoRun/src/autorun.h
new file mode 100644
index 0000000000..4d0900fcf0
--- /dev/null
+++ b/plugins/AutoRun/src/autorun.h
@@ -0,0 +1,23 @@
+#define _CRT_SECURE_NO_WARNINGS
+#define MIRANDA_VER 0x0A00
+
+#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
+// req. 0.7.18+ core
+// {EB0465E2-CEEE-11DB-83EF-C1BF55D89593}
+
+#define MIID_AUTORUN {0xeb0465e2, 0xceee, 0x11db, { 0x83, 0xef, 0xc1, 0xbf, 0x55, 0xd8, 0x95, 0x93}}
+
+HKEY ROOT_KEY = HKEY_CURRENT_USER;