Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
1a65a7b8
Commit
1a65a7b8
authored
Jan 15, 2002
by
Huw D M Davies
Committed by
Alexandre Julliard
Jan 15, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stubs for ImageList_[S|G]etFlags.
parent
0e4cf6c0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
2 deletions
+32
-2
comctl32.spec
dlls/comctl32/comctl32.spec
+2
-2
imagelist.c
dlls/comctl32/imagelist.c
+30
-0
No files found.
dlls/comctl32/comctl32.spec
View file @
1a65a7b8
...
...
@@ -75,7 +75,7 @@ debug_channels (animate comboex commctrl datetime header hotkey imagelist ipaddr
55 stdcall ImageList_EndDrag() ImageList_EndDrag
56 stdcall ImageList_GetBkColor(ptr) ImageList_GetBkColor
57 stdcall ImageList_GetDragImage(ptr ptr) ImageList_GetDragImage
58 st
ub
ImageList_GetFlags
58 st
dcall ImageList_GetFlags(ptr)
ImageList_GetFlags
59 stdcall ImageList_GetIcon(ptr long long) ImageList_GetIcon
60 stdcall ImageList_GetIconSize(ptr ptr ptr) ImageList_GetIconSize
61 stdcall ImageList_GetImageCount(ptr) ImageList_GetImageCount
...
...
@@ -96,7 +96,7 @@ debug_channels (animate comboex commctrl datetime header hotkey imagelist ipaddr
76 stdcall ImageList_SetBkColor(ptr long) ImageList_SetBkColor
77 stdcall ImageList_SetDragCursorImage(ptr long long long) ImageList_SetDragCursorImage
78 stdcall ImageList_SetFilter(ptr long long) ImageList_SetFilter
79 st
ub
ImageList_SetFlags
79 st
dcall ImageList_SetFlags(ptr long)
ImageList_SetFlags
80 stdcall ImageList_SetIconSize(ptr long long) ImageList_SetIconSize
81 stdcall ImageList_SetImageCount(ptr long) ImageList_SetImageCount
82 stdcall ImageList_SetOverlayImage(ptr long long) ImageList_SetOverlayImage
...
...
dlls/comctl32/imagelist.c
View file @
1a65a7b8
...
...
@@ -1551,6 +1551,21 @@ ImageList_GetDragImage (POINT *ppt, POINT *pptHotspot)
/*************************************************************************
* ImageList_GetFlags [COMCTL32.58]
*
* BUGS
* Stub.
*/
DWORD
WINAPI
ImageList_GetFlags
(
HIMAGELIST
himl
)
{
FIXME
(
"(%p):empty stub
\n
"
,
himl
);
return
0
;
}
/*************************************************************************
* ImageList_GetIcon [COMCTL32.59]
*
* Creates an icon from a masked image of an image list.
...
...
@@ -2651,6 +2666,21 @@ ImageList_SetFilter (HIMAGELIST himl, INT i, DWORD dwFilter)
/*************************************************************************
* ImageList_SetFlags [COMCTL32.79]
*
* BUGS
* Stub.
*/
DWORD
WINAPI
ImageList_SetFlags
(
HIMAGELIST
himl
,
DWORD
flags
)
{
FIXME
(
"(%p %08lx):empty stub
\n
"
,
himl
,
flags
);
return
0
;
}
/*************************************************************************
* ImageList_SetIconSize [COMCTL32.80]
*
* Sets the image size of the bitmap and deletes all images.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment