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
6f456c2f
Commit
6f456c2f
authored
Jun 05, 1999
by
Ian Schmidt
Committed by
Alexandre Julliard
Jun 05, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added partial implementation for DPA_LoadStream and stub for
DPA_SaveStream. Thanks to Eric Kohl (ekohl@abo.rhein-zeitung.de) for the partial implementation and parameter information.
parent
1fe9eb1b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
2 deletions
+28
-2
comctl32undoc.c
dlls/comctl32/comctl32undoc.c
+26
-0
comctl32.spec
relay32/comctl32.spec
+2
-2
No files found.
dlls/comctl32/comctl32undoc.c
View file @
6f456c2f
...
...
@@ -1875,4 +1875,30 @@ INT WINAPI COMCTL32_StrSpnW( LPWSTR lpStr, LPWSTR lpSet) {
return
(
INT
)(
lpLoop
-
lpStr
);
}
/*************************************************************************
* DPA_LoadStream [COMCTL32.9]
*
* NOTE: Ordinal is only accurate for Win98 / IE 4 and later
*/
DWORD
WINAPI
DPA_LoadStream
(
HDPA
*
hDpa
,
DWORD
pfnDpaLoadCallback
,
DWORD
param3
,
DWORD
param4
)
{
FIXME
(
commctrl
,
"(%p %lx %lx %lx): partial stub!
\n
"
,
hDpa
,
pfnDpaLoadCallback
,
param3
,
param4
);
*
hDpa
=
DPA_Create
(
8
);
return
(
0
);
}
/************************************************************************
* DPA_SaveStream [COMCTL32.10]
*
* NOTE: Ordinal is only accurate for Win98 / IE 4 and later
*/
DWORD
WINAPI
DPA_SaveStream
(
DWORD
param1
,
DWORD
param2
,
DWORD
param3
,
DWORD
param4
)
{
FIXME
(
commctrl
,
"(%lx %lx %lx %lx): stub!
\n
"
,
param1
,
param2
,
param3
,
param4
);
return
(
0
);
}
relay32/comctl32.spec
View file @
6f456c2f
...
...
@@ -14,8 +14,8 @@ init COMCTL32_LibMain
6 stdcall CreateStatusWindowA(long str long long) CreateStatusWindowA
7 stdcall CreateToolbar(long long long long long long ptr long) CreateToolbar
8 stdcall CreateMappedBitmap(long long long ptr long) CreateMappedBitmap
9 st
ub COMCTL32_9
10 st
ub COMCTL32_10
9 st
dcall DPA_LoadStream(ptr ptr long long) DPA_LoadStream
10 st
dcall DPA_SaveStream(long long long long) DPA_SaveStream
11 stdcall DPA_Merge(ptr ptr long ptr ptr long) DPA_Merge
#12 stub Cctl1632_ThunkData32
13 stdcall MakeDragList(long) MakeDragList
...
...
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