diff options
author | George Hazan <george.hazan@gmail.com> | 2016-08-31 12:06:15 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-08-31 12:06:15 +0000 |
commit | 75a38acd5c2a1e0abd08d3458d36a452dfd0879a (patch) | |
tree | 89425d3569f4e49a97349f61cdaf21c5adb12a3d /plugins/AssocMgr/src/reg.h | |
parent | 29fdf372a2d67fcbd19874e37f9f1a817fa23f60 (diff) |
memory allocation problem
git-svn-id: http://svn.miranda-ng.org/main/trunk@17225 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AssocMgr/src/reg.h')
-rw-r--r-- | plugins/AssocMgr/src/reg.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/plugins/AssocMgr/src/reg.h b/plugins/AssocMgr/src/reg.h index 69e3810ecd..c7e74d0634 100644 --- a/plugins/AssocMgr/src/reg.h +++ b/plugins/AssocMgr/src/reg.h @@ -44,8 +44,9 @@ BOOL RemoveRegRunEntry(const wchar_t *pszAppName,const wchar_t *pszRunCmd); BOOL IsRegRunEntry(const wchar_t *pszAppName,const wchar_t *pszRunCmd);
/* Strings */
-char *MakeFileClassName(const char *pszFileExt);
-char *MakeUrlClassName(const char *pszUrl);
-wchar_t *MakeRunCommand(BOOL fMirExe,BOOL fFixedDbProfile);
-wchar_t *MakeIconLocation(HMODULE hModule,WORD nIconResID);
-wchar_t *MakeAppFileName(BOOL fMirExe);
+char* MakeFileClassName(const char *pszFileExt);
+char* MakeUrlClassName(const char *pszUrl);
+
+wchar_t* MakeRunCommand(BOOL fMirExe,BOOL fFixedDbProfile);
+wchar_t* MakeIconLocation(HMODULE hModule,WORD nIconResID);
+wchar_t* MakeAppFileName(BOOL fMirExe);
|