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
4558480a
Commit
4558480a
authored
Jul 28, 1999
by
Ian Schmidt
Committed by
Alexandre Julliard
Jul 28, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stubs for InitMUILanguage and COMCTL32.410.
Fixed some compiler warnings.
parent
98c3053e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
2 deletions
+38
-2
comctl32.spec
dlls/comctl32/comctl32.spec
+4
-1
comctl32undoc.c
dlls/comctl32/comctl32undoc.c
+34
-1
No files found.
dlls/comctl32/comctl32.spec
View file @
4558480a
...
...
@@ -181,8 +181,11 @@ init COMCTL32_LibMain
403 stub EnumMRUListW@16
404 stub CreateMRUListLazyW@16
410 st
ub COMCTL
32_410
410 st
dcall COMCTL32_410(long long long long) comctl
32_410
411 stub COMCTL32_411
412 stub COMCTL32_412
413 stub COMCTL32_413
# this is actually ordinal 70 in COMCTL32 v5.0
414 stdcall InitMUILanguage(long) InitMUILanguage
dlls/comctl32/comctl32undoc.c
View file @
4558480a
...
...
@@ -187,10 +187,14 @@ BOOL WINAPI
DPA_Merge
(
const
HDPA
hdpa1
,
const
HDPA
hdpa2
,
DWORD
dwFlags
,
PFNDPACOMPARE
pfnCompare
,
PFNDPAMERGE
pfnMerge
,
LPARAM
lParam
)
{
INT
nCount
;
#if 0 /* these go with the "incomplete implementation" below */
LPVOID pWork1, pWork2;
INT nResult;
INT
n
Count
,
n
Index
;
INT nIndex;
INT nNewItems;
#endif
TRACE
(
"(%p %p %08lx %p %p %08lx): semi stub!
\n
"
,
hdpa1
,
hdpa2
,
dwFlags
,
pfnCompare
,
pfnMerge
,
lParam
);
...
...
@@ -2051,3 +2055,32 @@ INT WINAPI COMCTL32_StrSpnW( LPWSTR lpStr, LPWSTR lpSet) {
return
(
INT
)(
lpLoop
-
lpStr
);
}
/**************************************************************************
* comctl32_410 [COMCTL32.410]
*
* FIXME: What's this supposed to do?
* Parameter 1 is an HWND, you're on your own for the rest.
*/
BOOL
WINAPI
comctl32_410
(
HWND
hw
,
DWORD
b
,
DWORD
c
,
DWORD
d
)
{
FIXME_
(
commctrl
)(
"(%x, %lx, %lx, %lx): stub!
\n
"
,
hw
,
b
,
c
,
d
);
return
TRUE
;
}
/*************************************************************************
* InitMUILanguage [COMCTL32.70]
*
* FIXME: What's this supposed to do? Apparently some i18n thing.
*
*/
BOOL
WINAPI
InitMUILanguage
(
DWORD
a
)
{
FIXME_
(
commctrl
)(
"(%lx): stub!
\n
"
,
a
);
return
TRUE
;
}
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