From cf6d69d369b6661fc359621996873b18259b77fb Mon Sep 17 00:00:00 2001 From: Giannis Adamopoulos Date: Fri, 31 Mar 2017 16:55:20 +0000 Subject: [PATCH] [SDK] -Add the prototype of PaintMenuBar and update the prototype of NtUserPaintMenuBar. svn path=/trunk/; revision=74249 --- reactos/sdk/include/reactos/undocuser.h | 1 + reactos/win32ss/include/ntuser.h | 12 ++++++------ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/reactos/sdk/include/reactos/undocuser.h b/reactos/sdk/include/reactos/undocuser.h index bf9a6c63224..e04ba13461a 100644 --- a/reactos/sdk/include/reactos/undocuser.h +++ b/reactos/sdk/include/reactos/undocuser.h @@ -190,6 +190,7 @@ BOOL WINAPI SetShellWindowEx(HWND, HWND); BOOL WINAPI DrawCaptionTempA(HWND,HDC,const RECT*,HFONT,HICON,LPCSTR,UINT); BOOL WINAPI DrawCaptionTempW(HWND,HDC,const RECT*,HFONT,HICON,LPCWSTR,UINT); +BOOL WINAPI PaintMenuBar(HWND hWnd, HDC hDC, ULONG left, ULONG right, ULONG top, BOOL bActive); #ifdef UNICODE #define DrawCaptionTemp DrawCaptionTempW diff --git a/reactos/win32ss/include/ntuser.h b/reactos/win32ss/include/ntuser.h index af74bf270b6..0bfbc0a4913 100644 --- a/reactos/win32ss/include/ntuser.h +++ b/reactos/win32ss/include/ntuser.h @@ -2713,12 +2713,12 @@ NtUserPaintDesktop( DWORD NTAPI NtUserPaintMenuBar( - DWORD dwUnknown1, - DWORD dwUnknown2, - DWORD dwUnknown3, - DWORD dwUnknown4, - DWORD dwUnknown5, - DWORD dwUnknown6); + HWND hWnd, + HDC hDC, + ULONG left, + ULONG right, + ULONG top, + BOOL bActive); BOOL APIENTRY -- 2.17.1