Commit dd74d9d8 authored by Alexandre Julliard's avatar Alexandre Julliard

Ordinals 410-413 are the window subclassing functions.

parent a08f9785
...@@ -101,10 +101,10 @@ ...@@ -101,10 +101,10 @@
402 stdcall -noname FindMRUStringW(long wstr ptr) 402 stdcall -noname FindMRUStringW(long wstr ptr)
403 stdcall -noname EnumMRUListW(long long ptr long) 403 stdcall -noname EnumMRUListW(long long ptr long)
404 stdcall -noname CreateMRUListLazyW(ptr long long long) 404 stdcall -noname CreateMRUListLazyW(ptr long long long)
410 stdcall @(long long long long) COMCTL32_410 410 stdcall SetWindowSubclass(long ptr long long)
411 stdcall @(long long long) COMCTL32_411 411 stdcall GetWindowSubclass(long ptr long ptr)
412 stdcall @(long long long) COMCTL32_412 412 stdcall RemoveWindowSubclass(long ptr long)
413 stdcall @(long long long long) COMCTL32_413 413 stdcall DefSubclassProc(long long long long)
414 stub @ 414 stub @
415 stdcall @(long long long long long) COMCTL32_415 415 stdcall @(long long long long long) COMCTL32_415
416 stub @ 416 stub @
...@@ -186,9 +186,3 @@ ...@@ -186,9 +186,3 @@
@ stdcall PropertySheetW(ptr) @ stdcall PropertySheetW(ptr)
@ stdcall UninitializeFlatSB(long) @ stdcall UninitializeFlatSB(long)
@ stdcall _TrackMouseEvent(ptr) @ 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)
...@@ -2730,70 +2730,6 @@ INT WINAPI COMCTL32_StrSpnW( LPWSTR lpStr, LPWSTR lpSet) { ...@@ -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] * @ [COMCTL32.415]
* *
* FIXME: What's this supposed to do? * FIXME: What's this supposed to do?
......
...@@ -1039,7 +1039,7 @@ VOID WINAPI InitMUILanguage (LANGID uiLang) ...@@ -1039,7 +1039,7 @@ VOID WINAPI InitMUILanguage (LANGID uiLang)
/*********************************************************************** /***********************************************************************
* SetWindowSubclass [COMCTL32.@] * SetWindowSubclass [COMCTL32.410]
* *
* Starts a window subclass * Starts a window subclass
* *
...@@ -1138,7 +1138,7 @@ BOOL WINAPI SetWindowSubclass (HWND hWnd, SUBCLASSPROC pfnSubclass, ...@@ -1138,7 +1138,7 @@ BOOL WINAPI SetWindowSubclass (HWND hWnd, SUBCLASSPROC pfnSubclass,
/*********************************************************************** /***********************************************************************
* GetWindowSubclass [COMCTL32.@] * GetWindowSubclass [COMCTL32.411]
* *
* Gets the Reference data from a subclass. * Gets the Reference data from a subclass.
* *
...@@ -1178,7 +1178,7 @@ BOOL WINAPI GetWindowSubclass (HWND hWnd, SUBCLASSPROC pfnSubclass, ...@@ -1178,7 +1178,7 @@ BOOL WINAPI GetWindowSubclass (HWND hWnd, SUBCLASSPROC pfnSubclass,
/*********************************************************************** /***********************************************************************
* RemoveWindowSubclass [COMCTL32.@] * RemoveWindowSubclass [COMCTL32.412]
* *
* Removes a window subclass. * Removes a window subclass.
* *
...@@ -1242,7 +1242,7 @@ BOOL WINAPI RemoveWindowSubclass(HWND hWnd, SUBCLASSPROC pfnSubclass, UINT_PTR u ...@@ -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) * Calls the next window procedure (ie. the one before this subclass)
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment