* include/shellapi.h (ExtractIconEx[AW]): Correct return type

to UINT.
This commit is contained in:
Danny Smith 2002-12-09 01:51:27 +00:00
parent 6f45749cff
commit 97cc22ad06
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2002-12-09 Danny Smith <dannysmith@users.sourveforge.net>
* include/shellapi.h (ExtractIconEx[AW]): Correct return type
to UINT.
Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
2002-12-07 Danny Smith <dannysmith@users.sourveforge.net>
* include/winuser.h (AllowSetForegroundWindow,

View File

@ -201,8 +201,8 @@ HICON WINAPI ExtractAssociatedIconA(HINSTANCE,LPCSTR,PWORD);
HICON WINAPI ExtractAssociatedIconW(HINSTANCE,LPCWSTR,PWORD);
HICON WINAPI ExtractIconA(HINSTANCE,LPCSTR,UINT);
HICON WINAPI ExtractIconW(HINSTANCE,LPCWSTR,UINT);
HICON WINAPI ExtractIconExA(LPCSTR,int,HICON*,HICON*,UINT);
HICON WINAPI ExtractIconExW(LPCWSTR,int,HICON*,HICON*,UINT);
UINT WINAPI ExtractIconExA(LPCSTR,int,HICON*,HICON*,UINT);
UINT WINAPI ExtractIconExW(LPCWSTR,int,HICON*,HICON*,UINT);
HINSTANCE WINAPI FindExecutableA(LPCSTR,LPCSTR,LPSTR);
HINSTANCE WINAPI FindExecutableW(LPCWSTR,LPCWSTR,LPWSTR);
UINT WINAPI SHAppBarMessage(DWORD,PAPPBARDATA);