Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Yoann Laissus
wine
Commits
1a65a7b8
Commit
1a65a7b8
authored
23 years ago
by
Huw D. M. Davies
Committed by
Alexandre Julliard
23 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Stubs for ImageList_[S|G]etFlags.
parent
0e4cf6c0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/comctl32/comctl32.spec
+2
-2
2 additions, 2 deletions
dlls/comctl32/comctl32.spec
dlls/comctl32/imagelist.c
+30
-0
30 additions, 0 deletions
dlls/comctl32/imagelist.c
with
32 additions
and
2 deletions
dlls/comctl32/comctl32.spec
+
2
−
2
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
...
...
This diff is collapsed.
Click to expand it.
dlls/comctl32/imagelist.c
+
30
−
0
View file @
1a65a7b8
...
...
@@ -1550,6 +1550,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]
*
...
...
@@ -2650,6 +2665,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]
*
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment