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
997ce192
Commit
997ce192
authored
Feb 17, 2004
by
Robert Shearman
Committed by
Alexandre Julliard
Feb 17, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Forward some wrapper functions since we don't care about compatibility
with Win98 in this case.
parent
0462858e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
50 deletions
+7
-50
comctl32.spec
dlls/comctl32/comctl32.spec
+7
-7
comctl32undoc.c
dlls/comctl32/comctl32undoc.c
+0
-43
No files found.
dlls/comctl32/comctl32.spec
View file @
997ce192
...
...
@@ -106,13 +106,13 @@
412 stdcall RemoveWindowSubclass(long ptr long)
413 stdcall DefSubclassProc(long long long long)
414 stub -noname MirrorIcon
415 stdcall -noname DrawTextWrap(long
long long long long)
416 st
ub -noname DrawTextExPrivWrap
417 stdcall -noname ExtTextOutWrap(long long long long ptr wstr long ptr)
418 st
ub -noname GetCharWidthWrap
419 stdcall -noname GetTextExtentPointWrap(long
long long long)
420 st
ub -noname GetTextExtentPoint32Wrap
421 st
ub -noname TextOutWrap
415 stdcall -noname DrawTextWrap(long
wstr long ptr long) user32.DrawTextW
416 st
dcall -noname DrawTextExPrivWrap(long wstr long ptr long ptr) user32.DrawTextExW
417 stdcall -noname ExtTextOutWrap(long long long long ptr wstr long ptr)
gdi32.ExtTextOutW
418 st
dcall -noname GetCharWidthWrap(long long long long) gdi32.GetCharWidthW
419 stdcall -noname GetTextExtentPointWrap(long
wstr long ptr) gdi32.GetTextExtentPointW
420 st
dcall -noname GetTextExtentPoint32Wrap(long wstr long ptr) gdi32.GetTextExtentPoint32W
421 st
dcall -noname TextOutWrap(long long long wstr long) gdi32.TextOutW
# Functions imported by name
...
...
dlls/comctl32/comctl32undoc.c
View file @
997ce192
...
...
@@ -25,9 +25,6 @@
* These functions are used by EXPLORER.EXE, IEXPLORE.EXE and
* COMCTL32.DLL (internally).
*
* TODO
* - Add more functions.
* - Write some documentation.
*/
#include "config.h"
#include "wine/port.h"
...
...
@@ -2540,43 +2537,3 @@ DSA_DestroyCallback (HDSA hdsa, PFNDSAENUMCALLBACK enumProc, LPVOID lParam)
DSA_EnumCallback
(
hdsa
,
enumProc
,
lParam
);
DSA_Destroy
(
hdsa
);
}
/**************************************************************************
* @ [COMCTL32.415]
*
* FIXME: What's this supposed to do?
* Parameter 1 is an HWND, you're on your own for the rest.
*/
BOOL
WINAPI
DrawTextWrap
(
HWND
hwnd
,
DWORD
b
,
DWORD
c
,
DWORD
d
,
DWORD
e
)
{
FIXME
(
"(%p, %lx, %lx, %lx, %lx): stub!
\n
"
,
hwnd
,
b
,
c
,
d
,
e
);
return
TRUE
;
}
/**************************************************************************
* @ [COMCTL32.417]
*
*/
BOOL
WINAPI
ExtTextOutWrap
(
HDC
hdc
,
INT
x
,
INT
y
,
UINT
flags
,
const
RECT
*
lprect
,
LPCWSTR
str
,
UINT
count
,
const
INT
*
lpDx
)
{
return
ExtTextOutW
(
hdc
,
x
,
y
,
flags
,
lprect
,
str
,
count
,
lpDx
);
}
/**************************************************************************
* @ [COMCTL32.419]
*
* FIXME: What's this supposed to do?
*/
BOOL
WINAPI
GetTextExtentPointWrap
(
DWORD
a
,
DWORD
b
,
DWORD
c
,
DWORD
d
)
{
FIXME
(
"(%lx, %lx, %lx, %lx): stub!
\n
"
,
a
,
b
,
c
,
d
);
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