diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-01-02 19:40:35 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-01-02 19:40:35 +0000 |
commit | e185ce0df50fa161f5ea5c89fe0edfdbabb59185 (patch) | |
tree | a9dde200742c3edbee7d1be5e88335060372cbd6 /plugins/PackUpdater/Src/Common.h | |
parent | 006238c7b97bd68b99667146f1b5df1f3661f470 (diff) |
fixed version compare
warning level changed to w4
git-svn-id: http://svn.miranda-ng.org/main/trunk@11726 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/PackUpdater/Src/Common.h')
-rw-r--r-- | plugins/PackUpdater/Src/Common.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/PackUpdater/Src/Common.h b/plugins/PackUpdater/Src/Common.h index 71f9c1ab93..0c6eeafa2f 100644 --- a/plugins/PackUpdater/Src/Common.h +++ b/plugins/PackUpdater/Src/Common.h @@ -1,5 +1,5 @@ -/*
-Copyright (C) 2010 Mataes
+/*
+Copyright (C) 2011-2015 Mataes
This is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
@@ -14,7 +14,7 @@ Library General Public License for more details. You should have received a copy of the GNU Library General Public
License along with this file; see the file license.txt. If
not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.
+Boston, MA 02111-1307, USA.
*/
// Windows Header Files:
@@ -94,7 +94,7 @@ extern BYTE Reminder, UpdateOnStartup, UpdateOnPeriod, OnlyOnceADay, PeriodMeasu extern TCHAR tszRoot[MAX_PATH], tszDialogMsg[2048];
extern FILEINFO* pFileInfo;
extern FILEURL* pFileUrl;
-extern HANDLE hCheckThread, hOnPreShutdown, hOptHook, hLoadHook;
+extern HANDLE hCheckThread;
extern MYOPTIONS MyOptions;
extern aPopups PopupsList[POPUPS];
extern LPCTSTR Title, Text;
@@ -106,8 +106,8 @@ BOOL NetlibInit(); VOID IcoLibInit();
VOID NetlibUnInit();
INT ModulesLoaded(WPARAM wParam, LPARAM lParam);
-INT_PTR MenuCommand(WPARAM wParam,LPARAM lParam);
-INT_PTR EmptyFolder(WPARAM wParam,LPARAM lParam);
+INT_PTR MenuCommand(WPARAM wParam, LPARAM lParam);
+INT_PTR EmptyFolder(WPARAM wParam, LPARAM lParam);
INT OnPreShutdown(WPARAM wParam, LPARAM lParam);
INT OptInit(WPARAM wParam, LPARAM lParam);
VOID DoCheck(INT iFlag);
|