diff options
author | George Hazan <george.hazan@gmail.com> | 2013-02-20 17:12:40 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-02-20 17:12:40 +0000 |
commit | 509f52fe07c0b035dfeea810b99edf92a9781380 (patch) | |
tree | 3a31ce4a6260801a9dfd47c2c50e2875171eab3c /plugins/Clist_nicer/src/Include | |
parent | 646d843cd5b1b3498e488f99d812ad344f746f81 (diff) |
nicer+ status items list made dynamic
git-svn-id: http://svn.miranda-ng.org/main/trunk@3654 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_nicer/src/Include')
-rw-r--r-- | plugins/Clist_nicer/src/Include/commonheaders.h | 3 | ||||
-rw-r--r-- | plugins/Clist_nicer/src/Include/m_cln_skinedit.h | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/plugins/Clist_nicer/src/Include/commonheaders.h b/plugins/Clist_nicer/src/Include/commonheaders.h index aa3d51c812..d92f07724b 100644 --- a/plugins/Clist_nicer/src/Include/commonheaders.h +++ b/plugins/Clist_nicer/src/Include/commonheaders.h @@ -52,6 +52,7 @@ #include <win2k.h>
#include <m_clistint.h>
#include <m_database.h>
+#include <m_system_cpp.h>
#include <m_langpack.h>
#include <m_avatars.h>
#include <m_button.h>
@@ -175,7 +176,7 @@ // shared vars
extern HINSTANCE g_hInst;
extern LONG g_cxsmIcon, g_cysmIcon;
-extern StatusItems_t *StatusItems;
+extern LIST<StatusItems_t> arStatusItems;
extern ImageItem *g_glyphItem;
/* most free()'s are invalid when the code is executed from a dll, so this changes
diff --git a/plugins/Clist_nicer/src/Include/m_cln_skinedit.h b/plugins/Clist_nicer/src/Include/m_cln_skinedit.h index a1e69bb6e1..a643363d70 100644 --- a/plugins/Clist_nicer/src/Include/m_cln_skinedit.h +++ b/plugins/Clist_nicer/src/Include/m_cln_skinedit.h @@ -98,7 +98,7 @@ typedef struct { typedef struct _tagSkinDescription {
DWORD cbSize;
- StatusItems_t *StatusItems;
+ StatusItems_t **StatusItems;
int lastItem;
int firstItem;
char szModule[100];
|