From 9dc68f3b6529366f03ed628653cc61942b142866 Mon Sep 17 00:00:00 2001 From: Emanuele Aliberti Date: Sun, 6 Jun 1999 15:34:09 +0000 Subject: [PATCH] Context help functions stubs svn path=/trunk/; revision=537 --- reactos/lib/user32/windows/help.c | 76 +++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 reactos/lib/user32/windows/help.c diff --git a/reactos/lib/user32/windows/help.c b/reactos/lib/user32/windows/help.c new file mode 100644 index 00000000000..0ca6e084eda --- /dev/null +++ b/reactos/lib/user32/windows/help.c @@ -0,0 +1,76 @@ +/* $Id: help.c,v 1.1 1999/06/06 15:34:09 ea Exp $ + * + * reactos/lib/user32/windows/help.c + * + * Copyright (c) 1999 Emanuele Aliberti + * + * -------------------------------------------------------------------- + * + * This software is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public License as + * published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version. + * + * This software is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public + * License along with this software; see the file COPYING.LIB. If + * not, write to the Free Software Foundation, Inc., 675 Mass Ave, + * Cambridge, MA 02139, USA. + * + * -------------------------------------------------------------------- + * + * ReactOS user32.dll window context help functions. + * + */ +#include + +DWORD +STDCALL +GetMenuContextHelpId ( + HMENU hmenu + ) +{ + SetLastError(ERROR_CALL_NOT_IMPLEMENTED); + return 0; +} + + +BOOL +STDCALL +SetMenuContextHelpId ( + HMENU hmenu, + DWORD dwContextHelpId + ) +{ + SetLastError(ERROR_CALL_NOT_IMPLEMENTED); + return FALSE; +} + +DWORD +STDCALL +GetWindowContextHelpId ( + HWND hwnd + ) +{ + SetLastError(ERROR_CALL_NOT_IMPLEMENTED); + return 0; +} + + +BOOL +STDCALL +SetWindowContextHelpId ( + HWND hwnd, + DWORD dwContextHelpId + ) +{ + SetLastError(ERROR_CALL_NOT_IMPLEMENTED); + return 0; +} + + +/* EOF */