diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-10-20 15:20:00 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-10-20 15:20:00 +0000 |
commit | 88966b5e76b094eff9e8a655495535a3ec2385ea (patch) | |
tree | f371b6e6fa1314e94fde7f0fdd76276de3dd6917 /plugins/AutoRun | |
parent | e84b4a12fbf62b7867959d5dfd58250cd9181330 (diff) |
version info standartization
git-svn-id: http://svn.miranda-ng.org/main/trunk@1989 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AutoRun')
-rw-r--r-- | plugins/AutoRun/res/Version.rc | 5 | ||||
-rw-r--r-- | plugins/AutoRun/src/autorun.h | 6 | ||||
-rw-r--r-- | plugins/AutoRun/src/main.cpp | 6 |
3 files changed, 3 insertions, 14 deletions
diff --git a/plugins/AutoRun/res/Version.rc b/plugins/AutoRun/res/Version.rc index d741488c4f..cee33c8390 100644 --- a/plugins/AutoRun/res/Version.rc +++ b/plugins/AutoRun/res/Version.rc @@ -4,13 +4,8 @@ #error this file is not editable by Microsoft Visual C++
#endif //APSTUDIO_INVOKED
-#include "afxres.h"
#include "..\src\version.h"
-#ifdef _WIN32
-LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
-#endif //_WIN32
-
VS_VERSION_INFO VERSIONINFO
FILEVERSION __FILEVERSION_STRING
PRODUCTVERSION __FILEVERSION_STRING
diff --git a/plugins/AutoRun/src/autorun.h b/plugins/AutoRun/src/autorun.h index 36d951cff0..14df1c4349 100644 --- a/plugins/AutoRun/src/autorun.h +++ b/plugins/AutoRun/src/autorun.h @@ -15,10 +15,4 @@ #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;
diff --git a/plugins/AutoRun/src/main.cpp b/plugins/AutoRun/src/main.cpp index da5b605fc1..aeecf0e08d 100644 --- a/plugins/AutoRun/src/main.cpp +++ b/plugins/AutoRun/src/main.cpp @@ -3,8 +3,7 @@ HINSTANCE hInst;
int hLangpack;
-PLUGININFOEX pluginInfoEx=
-{ // about plugin
+PLUGININFOEX pluginInfoEx = {
sizeof(PLUGININFOEX),
__PLUGIN_NAME,
PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
@@ -14,7 +13,8 @@ PLUGININFOEX pluginInfoEx= __COPYRIGHT,
__AUTHORWEB,
UNICODE_AWARE,
- MIID_AUTORUN
+ // {EB0465E2-CEEE-11DB-83EF-C1BF55D89593}
+ {0xeb0465e2, 0xceee, 0x11db, {0x83, 0xef, 0xc1, 0xbf, 0x55, 0xd8, 0x95, 0x93}}
};
BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvReserved)
|