diff options
author | George Hazan <george.hazan@gmail.com> | 2012-09-30 14:50:03 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-09-30 14:50:03 +0000 |
commit | 46bd23bb19193e78e544d07a721e96548a7ab60a (patch) | |
tree | 15f5848c0766f231bc85b07c57e8821b34fe66ff /plugins/PluginUpdater/src/Common.h | |
parent | 82ea016e57d36a1e75e57529f8f5dfdd2ac39b63 (diff) |
fix for DLLs with the trailing W in names
git-svn-id: http://svn.miranda-ng.org/main/trunk@1729 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/PluginUpdater/src/Common.h')
-rw-r--r-- | plugins/PluginUpdater/src/Common.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/PluginUpdater/src/Common.h b/plugins/PluginUpdater/src/Common.h index e6eb4340b7..066e03c17b 100644 --- a/plugins/PluginUpdater/src/Common.h +++ b/plugins/PluginUpdater/src/Common.h @@ -67,7 +67,7 @@ struct FILEINFO {
TCHAR tszOldName[MAX_PATH], tszNewName[MAX_PATH];
FILEURL File;
- BOOL enabled;
+ BOOL enabled, bDeleteOnly;
BYTE FileType;
int FileNum;
BYTE Force;
@@ -145,6 +145,7 @@ INT_PTR CALLBACK DlgUpdate(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam INT_PTR CALLBACK DlgMsgPop(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
bool unzip(const TCHAR *ptszOldFileName, const TCHAR *ptszZipFile, TCHAR *ptszDestPath, TCHAR *ptszBackPath);
+void strdel(TCHAR *parBuffer, int len);
#if MIRANDA_VER < 0x0A00
|