Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
42c4c870
Commit
42c4c870
authored
Dec 13, 2014
by
Austin English
Committed by
Alexandre Julliard
Dec 15, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Add a stub for LoadIconWithScaleDown.
parent
4db1e201
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
0 deletions
+11
-0
comctl32.spec
dlls/comctl32/comctl32.spec
+1
-0
commctrl.c
dlls/comctl32/commctrl.c
+9
-0
commctrl.h
include/commctrl.h
+1
-0
No files found.
dlls/comctl32/comctl32.spec
View file @
42c4c870
...
...
@@ -88,6 +88,7 @@
375 stdcall -noname -private StrCSpnIW(wstr wstr)
376 stdcall -noname -private IntlStrEqWorkerA(long str str long)
377 stdcall -noname -private IntlStrEqWorkerW(long wstr wstr long)
381 stdcall -ordinal LoadIconWithScaleDown(ptr wstr long long ptr)
382 stdcall -noname SmoothScrollWindow(ptr)
383 stub -noname DoReaderMode
384 stdcall -noname SetPathWordBreakProc(ptr long)
...
...
dlls/comctl32/commctrl.c
View file @
42c4c870
...
...
@@ -1637,3 +1637,12 @@ HRESULT WINAPI TaskDialogIndirect(const TASKDIALOGCONFIG *pTaskConfig, int *pnBu
if
(
pfVerificationFlagChecked
)
*
pfVerificationFlagChecked
=
TRUE
;
return
S_OK
;
}
/***********************************************************************
* LoadIconWithScaleDown [COMCTL32.@]
*/
HRESULT
WINAPI
LoadIconWithScaleDown
(
HINSTANCE
hinst
,
PCWSTR
name
,
int
cx
,
int
cy
,
HICON
*
icon
)
{
FIXME
(
"stub: %p %s %d %d %p
\n
"
,
hinst
,
wine_dbgstr_w
(
name
),
cx
,
cy
,
icon
);
return
E_NOTIMPL
;
}
include/commctrl.h
View file @
42c4c870
...
...
@@ -42,6 +42,7 @@ BOOL WINAPI InitCommonControlsEx (const INITCOMMONCONTROLSEX*);
LANGID
WINAPI
GetMUILanguage
(
VOID
);
VOID
WINAPI
InitMUILanguage
(
LANGID
uiLang
);
HRESULT
WINAPI
LoadIconWithScaleDown
(
HINSTANCE
,
PCWSTR
,
int
,
int
,
HICON
*
);
#define COMCTL32_VERSION 5
/* dll version */
...
...
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