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
dd74d9d8
Commit
dd74d9d8
authored
May 11, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ordinals 410-413 are the window subclassing functions.
parent
a08f9785
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
78 deletions
+8
-78
comctl32.spec
dlls/comctl32/comctl32.spec
+4
-10
comctl32undoc.c
dlls/comctl32/comctl32undoc.c
+0
-64
commctrl.c
dlls/comctl32/commctrl.c
+4
-4
No files found.
dlls/comctl32/comctl32.spec
View file @
dd74d9d8
...
...
@@ -101,10 +101,10 @@
402 stdcall -noname FindMRUStringW(long wstr ptr)
403 stdcall -noname EnumMRUListW(long long ptr long)
404 stdcall -noname CreateMRUListLazyW(ptr long long long)
410 stdcall
@(long long long long) COMCTL32_410
411 stdcall
@(long long long) COMCTL32_411
412 stdcall
@(long long long) COMCTL32_412
413 stdcall
@(long long long long) COMCTL32_413
410 stdcall
SetWindowSubclass(long ptr long long)
411 stdcall
GetWindowSubclass(long ptr long ptr)
412 stdcall
RemoveWindowSubclass(long ptr long)
413 stdcall
DefSubclassProc(long long long long)
414 stub @
415 stdcall @(long long long long long) COMCTL32_415
416 stub @
...
...
@@ -186,9 +186,3 @@
@ stdcall PropertySheetW(ptr)
@ stdcall UninitializeFlatSB(long)
@ stdcall _TrackMouseEvent(ptr)
# These are only available in comctrl 6
@ stdcall DefSubclassProc(long long long long)
@ stdcall GetWindowSubclass(long ptr long ptr)
@ stdcall RemoveWindowSubclass(long ptr long)
@ stdcall SetWindowSubclass(long ptr long long)
dlls/comctl32/comctl32undoc.c
View file @
dd74d9d8
...
...
@@ -2730,70 +2730,6 @@ INT WINAPI COMCTL32_StrSpnW( LPWSTR lpStr, LPWSTR lpSet) {
}
/**************************************************************************
* @ [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
(
"(%p, %lx, %lx, %lx): stub!
\n
"
,
hw
,
b
,
c
,
d
);
return
TRUE
;
}
/**************************************************************************
* @ [COMCTL32.411]
*
* FIXME: What's this supposed to do?
* Parameter 1 is an HWND, you're on your own for the rest.
*/
BOOL
WINAPI
COMCTL32_411
(
HWND
hw
,
DWORD
b
,
DWORD
c
)
{
FIXME
(
"(%p, %lx, %lx): stub!
\n
"
,
hw
,
b
,
c
);
return
TRUE
;
}
/**************************************************************************
* @ [COMCTL32.412]
*
* FIXME: What's this supposed to do?
* Parameter 1 is an HWND, you're on your own for the rest.
*/
BOOL
WINAPI
COMCTL32_412
(
HWND
hwnd
,
DWORD
b
,
DWORD
c
)
{
FIXME
(
"(%p, %lx, %lx): stub!
\n
"
,
hwnd
,
b
,
c
);
if
(
IsWindow
(
hwnd
)
==
FALSE
)
return
FALSE
;
if
(
b
==
0
)
return
FALSE
;
return
TRUE
;
}
/**************************************************************************
* @ [COMCTL32.413]
*
* FIXME: What's this supposed to do?
* Parameter 1 is an HWND, you're on your own for the rest.
*/
BOOL
WINAPI
COMCTL32_413
(
HWND
hw
,
DWORD
b
,
DWORD
c
,
DWORD
d
)
{
FIXME
(
"(%p, %lx, %lx, %lx): stub!
\n
"
,
hw
,
b
,
c
,
d
);
return
TRUE
;
}
/**************************************************************************
* @ [COMCTL32.415]
*
* FIXME: What's this supposed to do?
...
...
dlls/comctl32/commctrl.c
View file @
dd74d9d8
...
...
@@ -1039,7 +1039,7 @@ VOID WINAPI InitMUILanguage (LANGID uiLang)
/***********************************************************************
* SetWindowSubclass [COMCTL32.
@
]
* SetWindowSubclass [COMCTL32.
410
]
*
* Starts a window subclass
*
...
...
@@ -1138,7 +1138,7 @@ BOOL WINAPI SetWindowSubclass (HWND hWnd, SUBCLASSPROC pfnSubclass,
/***********************************************************************
* GetWindowSubclass [COMCTL32.
@
]
* GetWindowSubclass [COMCTL32.
411
]
*
* Gets the Reference data from a subclass.
*
...
...
@@ -1178,7 +1178,7 @@ BOOL WINAPI GetWindowSubclass (HWND hWnd, SUBCLASSPROC pfnSubclass,
/***********************************************************************
* RemoveWindowSubclass [COMCTL32.
@
]
* RemoveWindowSubclass [COMCTL32.
412
]
*
* Removes a window subclass.
*
...
...
@@ -1242,7 +1242,7 @@ BOOL WINAPI RemoveWindowSubclass(HWND hWnd, SUBCLASSPROC pfnSubclass, UINT_PTR u
/***********************************************************************
* DefSubclassProc [COMCTL32.
@
]
* DefSubclassProc [COMCTL32.
413
]
*
* Calls the next window procedure (ie. the one before this subclass)
*
...
...
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