Module: wine Branch: master Commit: 74950a9e1f0c3db4f1c0c5da3704034b67dbc396 URL: http://source.winehq.org/git/wine.git/?a=commit;h=74950a9e1f0c3db4f1c0c5da37...
Author: Dmitry Timoshkov dmitry@codeweavers.com Date: Tue Feb 13 16:25:02 2007 +0800
comctl32: Implement ImageList_GetFlags.
---
dlls/comctl32/imagelist.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/dlls/comctl32/imagelist.c b/dlls/comctl32/imagelist.c index 972a84a..b24c4e7 100644 --- a/dlls/comctl32/imagelist.c +++ b/dlls/comctl32/imagelist.c @@ -1423,8 +1423,9 @@ ImageList_GetDragImage (POINT *ppt, POIN DWORD WINAPI ImageList_GetFlags(HIMAGELIST himl) { - FIXME("(%p):empty stub\n", himl); - return 0; + TRACE("%p\n", himl); + + return is_valid(himl) ? himl->flags : 0; }