Author: gadamopoulos Date: Wed Nov 24 14:13:12 2010 New Revision: 49769
URL: http://svn.reactos.org/svn/reactos?rev=49769&view=rev Log: [win32k] - Remove some unused functions
Modified: trunk/reactos/subsystems/win32/win32k/include/msgqueue.h trunk/reactos/subsystems/win32/win32k/ntuser/msgqueue.c trunk/reactos/subsystems/win32/win32k/ntuser/window.c
Modified: trunk/reactos/subsystems/win32/win32k/include/msgqueue.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/inc... ============================================================================== --- trunk/reactos/subsystems/win32/win32k/include/msgqueue.h [iso-8859-1] (original) +++ trunk/reactos/subsystems/win32/win32k/include/msgqueue.h [iso-8859-1] Wed Nov 24 14:13:12 2010 @@ -165,9 +165,6 @@ co_MsqWaitForNewMessages(PUSER_MESSAGE_QUEUE MessageQueue, PWND WndFilter, UINT MsgFilterMin, UINT MsgFilterMax); VOID FASTCALL -MsqSendNotifyMessage(PUSER_MESSAGE_QUEUE MessageQueue, - PUSER_SENT_MESSAGE_NOTIFY NotifyMessage); -VOID FASTCALL MsqIncPaintCountQueue(PUSER_MESSAGE_QUEUE Queue); VOID FASTCALL MsqDecPaintCountQueue(PUSER_MESSAGE_QUEUE Queue);
Modified: trunk/reactos/subsystems/win32/win32k/ntuser/msgqueue.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/ntu... ============================================================================== --- trunk/reactos/subsystems/win32/win32k/ntuser/msgqueue.c [iso-8859-1] (original) +++ trunk/reactos/subsystems/win32/win32k/ntuser/msgqueue.c [iso-8859-1] Wed Nov 24 14:13:12 2010 @@ -360,34 +360,6 @@ ExFreeToPagedLookasideList(&MessageLookasideList, Message); }
-VOID FASTCALL -co_MsqDispatchSentNotifyMessages(PUSER_MESSAGE_QUEUE MessageQueue) -{ - PLIST_ENTRY ListEntry; - PUSER_SENT_MESSAGE_NOTIFY Message; - - while (!IsListEmpty(&MessageQueue->SentMessagesListHead)) - { - ListEntry = RemoveHeadList(&MessageQueue->SentMessagesListHead); - Message = CONTAINING_RECORD(ListEntry, USER_SENT_MESSAGE_NOTIFY, - ListEntry); - - co_IntCallSentMessageCallback(Message->CompletionCallback, - Message->hWnd, - Message->Msg, - Message->CompletionCallbackContext, - Message->Result); - - } - -} - -BOOLEAN FASTCALL -MsqPeekSentMessages(PUSER_MESSAGE_QUEUE MessageQueue) -{ - return(!IsListEmpty(&MessageQueue->SentMessagesListHead)); -} - BOOLEAN FASTCALL co_MsqDispatchOneSentMessage(PUSER_MESSAGE_QUEUE MessageQueue) { @@ -570,15 +542,6 @@ CurrentEntry = CurrentEntry->Flink; } } -} - -VOID FASTCALL -MsqSendNotifyMessage(PUSER_MESSAGE_QUEUE MessageQueue, - PUSER_SENT_MESSAGE_NOTIFY NotifyMessage) -{ - InsertTailList(&MessageQueue->NotifyMessagesListHead, - &NotifyMessage->ListEntry); - MsqWakeQueue(MessageQueue, QS_SENDMESSAGE); }
NTSTATUS FASTCALL
Modified: trunk/reactos/subsystems/win32/win32k/ntuser/window.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/ntu... ============================================================================== --- trunk/reactos/subsystems/win32/win32k/ntuser/window.c [iso-8859-1] (original) +++ trunk/reactos/subsystems/win32/win32k/ntuser/window.c [iso-8859-1] Wed Nov 24 14:13:12 2010 @@ -656,22 +656,6 @@ return Ret; }
-// Move this to user space! -BOOL FASTCALL -IntGetWindowInfo(PWND Wnd, PWINDOWINFO pwi) -{ - pwi->cbSize = sizeof(WINDOWINFO); - pwi->rcWindow = Wnd->rcWindow; - pwi->rcClient = Wnd->rcClient; - pwi->dwStyle = Wnd->style; - pwi->dwExStyle = Wnd->ExStyle; - pwi->dwWindowStatus = (UserGetForegroundWindow() == Wnd->head.h); /* WS_ACTIVECAPTION */ - IntGetWindowBorderMeasures(Wnd, &pwi->cxWindowBorders, &pwi->cyWindowBorders); - pwi->atomWindowType = (Wnd->pcls ? Wnd->pcls->atomClassName : 0); - pwi->wCreatorVersion = 0x400; /* FIXME - return a real version number */ - return TRUE; -} - static BOOL FASTCALL IntSetMenu( PWND Wnd, @@ -799,25 +783,6 @@ Rect->bottom = Window->rcClient.bottom - Window->rcClient.top; }
- -#if 0 -HWND FASTCALL -IntGetFocusWindow(VOID) -{ - PUSER_MESSAGE_QUEUE Queue; - PDESKTOP pdo = IntGetActiveDesktop(); - - if( !pdo ) - return NULL; - - Queue = (PUSER_MESSAGE_QUEUE)pdo->ActiveMessageQueue; - - if (Queue == NULL) - return(NULL); - else - return(Queue->FocusWindow); -} -#endif
PMENU_OBJECT FASTCALL IntGetSystemMenu(PWND Window, BOOL bRevert, BOOL RetMenu)