From 0465030a5082ef28cd0af3e135c6c19c2a6bcc8f Mon Sep 17 00:00:00 2001 From: Mike McCormack Date: Wed, 14 Aug 2002 21:03:07 +0000 Subject: [PATCH] Stubs for DAD_Drag Enter, EnterEx, Move AutoScroll and Leave. --- dlls/shell32/shell32.spec | 10 ++++----- dlls/shell32/shellord.c | 45 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+), 5 deletions(-) diff --git a/dlls/shell32/shell32.spec b/dlls/shell32/shell32.spec index 1f5aa63cc1d..167e3d39b60 100644 --- a/dlls/shell32/shell32.spec +++ b/dlls/shell32/shell32.spec @@ -121,12 +121,12 @@ init Shell32LibMain 126 stdcall SHOutOfMemoryMessageBox (long long long) SHOutOfMemoryMessageBox 127 stdcall SHWinHelp (long long long long) SHWinHelp 128 stdcall DllGetClassObject(long long ptr) SHELL32_DllGetClassObject - 129 stub DAD_AutoScroll - 130 stub DAD_DragEnter - 131 stub DAD_DragEnterEx - 132 stub DAD_DragLeave + 129 stdcall DAD_AutoScroll(long ptr ptr) DAD_AutoScroll + 130 stdcall DAD_DragEnter(long) DAD_DragEnter + 131 stdcall DAD_DragEnterEx(long long long) DAD_DragEnterEx + 132 stdcall DAD_DragLeave() DAD_DragLeave 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 136 stdcall DAD_SetDragImage(long long) DAD_SetDragImage 137 stdcall DAD_ShowDragImage (long) DAD_ShowDragImage diff --git a/dlls/shell32/shellord.c b/dlls/shell32/shellord.c index 74a61882451..35c2f333e85 100644 --- a/dlls/shell32/shellord.c +++ b/dlls/shell32/shellord.c @@ -971,6 +971,51 @@ void WINAPI SHFreeUnusedLibraries (void) { 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] *