summaryrefslogtreecommitdiff
path: root/plugins/SecureIM/mmi.h
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2012-07-23 13:49:28 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2012-07-23 13:49:28 +0000
commita9580df150d799246eaecbf3c1fb5cecf9f8ab49 (patch)
treece046b1cd432d65718c9f6af80521d533ce6d4ca /plugins/SecureIM/mmi.h
parent60338d55bb73d0c45b6e092703c4bb88a3c49755 (diff)
SecureIM, SeenPlugin, SendSS, Sessions: changed folder structure
git-svn-id: http://svn.miranda-ng.org/main/trunk@1122 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SecureIM/mmi.h')
-rw-r--r--plugins/SecureIM/mmi.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/plugins/SecureIM/mmi.h b/plugins/SecureIM/mmi.h
deleted file mode 100644
index 7b3027e232..0000000000
--- a/plugins/SecureIM/mmi.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef __MMI_H__
-#define __MMI_H__
-
-#include "commonheaders.h"
-
-char *m_wwstrcat(LPCSTR,LPCSTR);
-char *m_awstrcat(LPCSTR,LPCSTR);
-char *m_aastrcat(LPCSTR,LPCSTR);
-char *m_ustrcat(LPCSTR,LPCSTR);
-LPSTR to_hex(PBYTE,int);
-
-LPSTR utf8_to_miranda(LPCSTR,DWORD&);
-LPSTR miranda_to_utf8(LPCSTR,DWORD);
-
-void *operator new(size_t sz);
-void operator delete(void *p);
-void *operator new[](size_t size);
-void operator delete[](void * p);
-
-#define SAFE_INIT(t,p) t p=NULL;
-#define SAFE_FREE(p) safe_free((void **)&(p));
-#define SAFE_DELETE(p) safe_delete((void **)&(p));
-
-void __fastcall safe_free(void** p);
-void __fastcall safe_delete(void** p);
-
-#endif