Ordinals 410-413 are the window subclassing functions.

This commit is contained in:
Alexandre Julliard 2003-05-11 03:40:59 +00:00
parent a08f9785ea
commit dd74d9d889
3 changed files with 8 additions and 78 deletions

View File

@ -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)

View File

@ -2729,70 +2729,6 @@ INT WINAPI COMCTL32_StrSpnW( LPWSTR lpStr, LPWSTR lpSet) {
return (INT)(lpLoop-lpStr);
}
/**************************************************************************
* @ [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]
*

View File

@ -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)
*