diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2014-11-12 20:32:53 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2014-11-12 20:32:53 +0000 |
commit | cb511b2098ad3eca2fe0771a205e40f72a6bd14d (patch) | |
tree | 5080bf46a2e1fc8a4f7accf3dec626db16552b32 /plugins/ExternalAPI/m_music.h | |
parent | 8fa41b072209a5a30d206a5d2143fe6be4bff3b8 (diff) |
WATrack_MPD:
-Fixed memory allocation
-Minor cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@10973 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ExternalAPI/m_music.h')
-rw-r--r-- | plugins/ExternalAPI/m_music.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ExternalAPI/m_music.h b/plugins/ExternalAPI/m_music.h index 24aacf22a9..793f16130a 100644 --- a/plugins/ExternalAPI/m_music.h +++ b/plugins/ExternalAPI/m_music.h @@ -298,7 +298,7 @@ typedef struct tMusicFormat { typedef int (__cdecl *LPINITPROC) ();
typedef int (__cdecl *LPDEINITPROC) ();
typedef int (__cdecl *LPSTATUSPROC) (HWND wnd);
-typedef WCHAR (__cdecl *LPNAMEPROC) (HWND wnd, int flags);
+typedef WCHAR*(__cdecl *LPNAMEPROC) (HWND wnd, int flags);
typedef HWND (__cdecl *LPCHECKPROC) (HWND wnd,int flags);
typedef int (__cdecl *LPINFOPROC) (LPSONGINFO Info, int flags);
typedef int (__cdecl *LPCOMMANDPROC)(HWND wnd, int command, int value);
|