diff options
author | George Hazan <ghazan@miranda.im> | 2019-05-29 21:51:22 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-05-29 21:51:22 +0300 |
commit | 4cae6446ffc3e024d7b7f0e1fd888459f7ab514e (patch) | |
tree | 9b1b8476939657193ceacb9eaf046ce7ea145406 /plugins/SmileyAdd/src/stdafx.h | |
parent | 68e4b1b9f6c46df3f46952a40d9f3b1d11323418 (diff) |
SmileyAdd:
- options dialog rewritten using UI classes;
- unused code removed;
- massive code cleaning
Diffstat (limited to 'plugins/SmileyAdd/src/stdafx.h')
-rw-r--r-- | plugins/SmileyAdd/src/stdafx.h | 29 |
1 files changed, 13 insertions, 16 deletions
diff --git a/plugins/SmileyAdd/src/stdafx.h b/plugins/SmileyAdd/src/stdafx.h index 35949d1e36..d0d2bc2fa1 100644 --- a/plugins/SmileyAdd/src/stdafx.h +++ b/plugins/SmileyAdd/src/stdafx.h @@ -52,26 +52,26 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include <win2k.h>
#include <newpluginapi.h>
+#include <m_button.h>
#include <m_clist.h>
-#include <m_langpack.h>
-#include <m_options.h>
-#include <m_protosvc.h>
#include <m_database.h>
-#include <m_button.h>
-#include <m_message.h>
-#include <m_netlib.h>
+#include <m_folders.h>
+#include <m_fontservice.h>
#include <m_hotkeys.h>
-#include <m_popup.h>
-#include <m_icolib.h>
#include <m_genmenu.h>
+#include <m_gui.h>
+#include <m_icolib.h>
#include <m_imgsrvc.h>
-#include <m_regexp.h>
-#include <m_fontservice.h>
-#include <m_xml.h>
-
+#include <m_langpack.h>
+#include <m_message.h>
#include <m_metacontacts.h>
+#include <m_netlib.h>
+#include <m_options.h>
+#include <m_popup.h>
+#include <m_protosvc.h>
+#include <m_regexp.h>
#include <m_smileyadd.h>
-#include <m_folders.h>
+#include <m_xml.h>
#include "resource.h"
#include "version.h"
@@ -129,9 +129,6 @@ bool IsSmileyProto(char *proto); HICON ImageList_GetIconFixed (HIMAGELIST himl, INT i, UINT fStyle);
-void pathToRelative(const CMStringW &pSrc, CMStringW &pOut);
-void pathToAbsolute(const CMStringW &pSrc, CMStringW &pOut);
-
bool InitGdiPlus(void);
void DestroyGdiPlus(void);
|