diff options
author | George Hazan <george.hazan@gmail.com> | 2015-04-14 16:13:41 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-04-14 16:13:41 +0000 |
commit | 320e707ce83310093e240fb4779258a201d37b82 (patch) | |
tree | 433f00c39d492552f92991a9fbe914292da149b9 /plugins/Popup/src/popup_gdiplus.h | |
parent | ac093517c8a975f51d8a696c34a6f75ce3a7fd10 (diff) |
switch to correct parameter types
git-svn-id: http://svn.miranda-ng.org/main/trunk@12817 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Popup/src/popup_gdiplus.h')
-rw-r--r-- | plugins/Popup/src/popup_gdiplus.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Popup/src/popup_gdiplus.h b/plugins/Popup/src/popup_gdiplus.h index acdec1f3d8..bd67c5efd2 100644 --- a/plugins/Popup/src/popup_gdiplus.h +++ b/plugins/Popup/src/popup_gdiplus.h @@ -28,6 +28,6 @@ void UnloadGDIPlus(); BOOL GDIPlus_IsAnimatedGIF(TCHAR * szName);
void GDIPlus_GetGIFSize(TCHAR * szName, int * width, int * height);
-void GDIPlus_ExtractAnimatedGIF(TCHAR * szName, int width, int height, HBITMAP * pBitmap, int ** pframesDelay, int * pframesCount, SIZE * pSizeAvatar);
+void GDIPlus_ExtractAnimatedGIF(TCHAR *szName, int width, int height, HBITMAP &pBitmap, int* &pframesDelay, int &pframesCount, SIZE &pSizeAvatar);
#endif // __popup_gdiplus_h__
|