diff options
author | George Hazan <george.hazan@gmail.com> | 2012-08-08 15:32:54 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-08-08 15:32:54 +0000 |
commit | 3f3b29cdf466a9865d9e831ce7a2d0fe00995364 (patch) | |
tree | aa1fecd509c816857bc917884e1e5553e76e31e0 /plugins/PluginUpdater/src/Common.h | |
parent | b073e215612eda97d9182bc951bf01058585b910 (diff) |
- icons are being downloaded ok now
- STL removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@1404 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/PluginUpdater/src/Common.h')
-rw-r--r-- | plugins/PluginUpdater/src/Common.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/plugins/PluginUpdater/src/Common.h b/plugins/PluginUpdater/src/Common.h index a3a88da424..d61a75ac2c 100644 --- a/plugins/PluginUpdater/src/Common.h +++ b/plugins/PluginUpdater/src/Common.h @@ -24,11 +24,10 @@ Boston, MA 02111-1307, USA. // Windows Header Files:
#include <time.h>
#include <stdio.h>
+#include <malloc.h>
+#include <stddef.h>
#include <windows.h>
#include <Windowsx.h>
-#include <vector> // stl vector header
-#include <map>
-#include <string>
#include <Shlobj.h>
// Miranda header files
@@ -78,6 +77,8 @@ struct FILEINFO BYTE Force;
};
+typedef OBJLIST<FILEINFO> FILELIST;
+
struct PopupDataText
{
TCHAR* Title;
|