diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-03-17 10:05:05 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-03-17 10:05:05 +0000 |
commit | 702f2b6951058a0569f0210a19545c79bcb5b511 (patch) | |
tree | 3c0ccc84ea301f551b09df916b1be14415b651a6 /plugins/IEView/src/Utils.h | |
parent | be2dabbdefed00b5f9e6cc112fd2d95175da0089 (diff) |
one more part of replacing own functions to core functions
git-svn-id: http://svn.miranda-ng.org/main/trunk@4068 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/IEView/src/Utils.h')
-rw-r--r-- | plugins/IEView/src/Utils.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/plugins/IEView/src/Utils.h b/plugins/IEView/src/Utils.h index 33bf23dbed..c3d7df78ec 100644 --- a/plugins/IEView/src/Utils.h +++ b/plugins/IEView/src/Utils.h @@ -40,25 +40,10 @@ public: static void appendText(wchar_t **str, int *sizeAlloced, const wchar_t *fmt, ...);
static void convertPath(char *path);
static void convertPath(wchar_t *path);
- static char *dupString(const char *a);
- static char *dupString(const char *a, int l);
- static wchar_t *dupString(const wchar_t *a);
- static wchar_t *dupString(const wchar_t *a, int l);
- static wchar_t *convertToWCS(const char *a);
- static wchar_t *convertToWCS(const char *a, int cp);
- static char *convertToString(const wchar_t *a);
- static char *convertToString(const wchar_t *a, int cp);
static char *escapeString(const char *a);
- static DWORD safe_wcslen(wchar_t *msg, DWORD maxLen);
static int detectURL(const wchar_t *text);
- static HANDLE hookEvent_Ex(const char *name, MIRANDAHOOK hook);
- static HANDLE createServiceFunction_Ex(const char *name, MIRANDASERVICE service);
- static void unhookEvents_Ex();
- static void destroyServices_Ex();
- static unsigned long forkThread(void (__cdecl *threadcode)(void*),unsigned long stacksize,void *arg);
static wchar_t *urlEncode(const wchar_t *a);
static wchar_t *urlEncode(const char *a);
-
};
#endif
|