diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-23 15:32:51 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-23 15:32:51 +0000 |
commit | ba0fb1404b113a7ced189e5f38cd5a960d67badf (patch) | |
tree | 5776b5cdf85665e52262f348965abb5b24bd4c99 /plugins/DbEditorPP/src/main.cpp | |
parent | 526f8de873c0efe9dce69aad9e62ee3a57ade9a9 (diff) |
removed not used headers
git-svn-id: http://svn.miranda-ng.org/main/trunk@3732 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/DbEditorPP/src/main.cpp')
-rw-r--r-- | plugins/DbEditorPP/src/main.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/plugins/DbEditorPP/src/main.cpp b/plugins/DbEditorPP/src/main.cpp index cb79c9739f..df3505c2e5 100644 --- a/plugins/DbEditorPP/src/main.cpp +++ b/plugins/DbEditorPP/src/main.cpp @@ -1,8 +1,5 @@ #include "headers.h"
-
-
-
HINSTANCE hInst = NULL;
HANDLE hTTBButt = NULL;
@@ -30,7 +27,8 @@ PLUGININFOEX pluginInfoEx={ __COPYRIGHT,
__AUTHORWEB,
UNICODE_AWARE,
- {0xa8a417ef, 0x7aa, 0x4f37, { 0x86, 0x9f, 0x7b, 0xfd, 0x74, 0x88, 0x65, 0x34}} // {A8A417EF-07AA-4f37-869F-7BFD74886534}
+ // {A8A417EF-07AA-4F37-869F-7BFD74886534}
+ {0xa8a417ef, 0x7aa, 0x4f37, {0x86, 0x9f, 0x7b, 0xfd, 0x74, 0x88, 0x65, 0x34}}
};
extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
@@ -44,9 +42,9 @@ extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = {MIID_SERVICE //========================
// WINAPI DllMain
//========================
-BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvReserved)
+BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
- hInst=hinstDLL;
+ hInst = hinstDLL;
return TRUE;
}
|