Jason Green : user32: Stub implementation of BlockInput.
Module: wine Branch: master Commit: 3004cbda2472bbdcb25e65f9212569bd87d44f31 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=3004cbda2472bbdcb25e65f9... Author: Jason Green <jave27(a)gmail.com> Date: Fri Sep 29 12:59:11 2006 -0400 user32: Stub implementation of BlockInput. --- dlls/user/input.c | 10 ++++++++++ dlls/user/user32.spec | 2 +- 2 files changed, 11 insertions(+), 1 deletions(-) diff --git a/dlls/user/input.c b/dlls/user/input.c index 24ffed7..54ab246 100644 --- a/dlls/user/input.c +++ b/dlls/user/input.c @@ -669,6 +669,16 @@ HKL WINAPI ActivateKeyboardLayout(HKL hL return USER_Driver->pActivateKeyboardLayout(hLayout, flags); } +/********************************************************************** + * BlockInput (USER32.@) + */ +BOOL WINAPI BlockInput(BOOL fBlockIt) +{ + FIXME_(keyboard)("(%d): stub\n", fBlockIt); + SetLastError(ERROR_CALL_NOT_IMPLEMENTED); + + return FALSE; +} /*********************************************************************** * GetKeyboardLayoutList (USER32.@) diff --git a/dlls/user/user32.spec b/dlls/user/user32.spec index 817858d..508b6d1 100644 --- a/dlls/user/user32.spec +++ b/dlls/user/user32.spec @@ -12,7 +12,7 @@ # @ stub AllowForegroundActivation @ stdcall AttachThreadInput(long long long) @ stdcall BeginDeferWindowPos(long) @ stdcall BeginPaint(long ptr) -# @ stub BlockInput +@ stdcall BlockInput(long) @ stdcall BringWindowToTop(long) @ stdcall BroadcastSystemMessage(long ptr long long long) BroadcastSystemMessageA @ stdcall BroadcastSystemMessageA(long ptr long long long)
participants (1)
-
Alexandre Julliard