Stubs for DAD_Drag Enter, EnterEx, Move AutoScroll and Leave.

This commit is contained in:
Mike McCormack 2002-08-14 21:03:07 +00:00 committed by Alexandre Julliard
parent 9611986ac7
commit 0465030a50
2 changed files with 50 additions and 5 deletions

View File

@ -121,12 +121,12 @@ init Shell32LibMain
126 stdcall SHOutOfMemoryMessageBox (long long long) SHOutOfMemoryMessageBox 126 stdcall SHOutOfMemoryMessageBox (long long long) SHOutOfMemoryMessageBox
127 stdcall SHWinHelp (long long long long) SHWinHelp 127 stdcall SHWinHelp (long long long long) SHWinHelp
128 stdcall DllGetClassObject(long long ptr) SHELL32_DllGetClassObject 128 stdcall DllGetClassObject(long long ptr) SHELL32_DllGetClassObject
129 stub DAD_AutoScroll 129 stdcall DAD_AutoScroll(long ptr ptr) DAD_AutoScroll
130 stub DAD_DragEnter 130 stdcall DAD_DragEnter(long) DAD_DragEnter
131 stub DAD_DragEnterEx 131 stdcall DAD_DragEnterEx(long long long) DAD_DragEnterEx
132 stub DAD_DragLeave 132 stdcall DAD_DragLeave() DAD_DragLeave
133 stdcall DragQueryFileW(long long ptr long) DragQueryFileW 133 stdcall DragQueryFileW(long long ptr long) DragQueryFileW
134 stub DAD_DragMove 134 stdcall DAD_DragMove(long long) DAD_DragMove
135 stdcall DragQueryPoint(long ptr) DragQueryPoint 135 stdcall DragQueryPoint(long ptr) DragQueryPoint
136 stdcall DAD_SetDragImage(long long) DAD_SetDragImage 136 stdcall DAD_SetDragImage(long long) DAD_SetDragImage
137 stdcall DAD_ShowDragImage (long) DAD_ShowDragImage 137 stdcall DAD_ShowDragImage (long) DAD_ShowDragImage

View File

@ -971,6 +971,51 @@ void WINAPI SHFreeUnusedLibraries (void)
{ {
FIXME("stub\n"); FIXME("stub\n");
} }
/*************************************************************************
* DAD_AutoScroll [SHELL32.129]
*
*/
DWORD WINAPI DAD_AutoScroll(HWND hwnd, LPSCROLLSAMPLES samples, LPPOINT pt)
{
FIXME("hwnd = %04x %p %p\n",hwnd,samples,pt);
return 0;
}
/*************************************************************************
* DAD_DragEnter [SHELL32.130]
*
*/
BOOL WINAPI DAD_DragEnter(HWND hwnd)
{
FIXME("hwnd = %04x\n",hwnd);
return FALSE;
}
/*************************************************************************
* DAD_DragEnterEx [SHELL32.131]
*
*/
BOOL WINAPI DAD_DragEnterEx(HWND hwnd, POINT p)
{
FIXME("hwnd = %04x (%ld,%ld)\n",hwnd,p.x,p.y);
return FALSE;
}
/*************************************************************************
* DAD_DragMove [SHELL32.134]
*
*/
BOOL WINAPI DAD_DragMove(POINT p)
{
FIXME("(%ld,%ld)\n",p.x,p.y);
return FALSE;
}
/*************************************************************************
* DAD_Leave [SHELL32.132]
*
*/
BOOL WINAPI DAD_DragLeave(VOID)
{
FIXME("\n");
return FALSE;
}
/************************************************************************* /*************************************************************************
* DAD_SetDragImage [SHELL32.136] * DAD_SetDragImage [SHELL32.136]
* *