Sprinkle win32k with some explicit voids,
authorDmitry Gorbachev <gorbachev@reactos.org>
Mon, 24 Aug 2009 20:09:58 +0000 (20:09 +0000)
committerDmitry Gorbachev <gorbachev@reactos.org>
Mon, 24 Aug 2009 20:09:58 +0000 (20:09 +0000)
svn path=/trunk/; revision=42926

21 files changed:
reactos/subsystems/win32/win32k/include/accelerator.h
reactos/subsystems/win32/win32k/include/dc.h
reactos/subsystems/win32/win32k/include/error.h
reactos/subsystems/win32/win32k/include/focus.h
reactos/subsystems/win32/win32k/include/guicheck.h
reactos/subsystems/win32/win32k/include/hotkey.h
reactos/subsystems/win32/win32k/include/misc.h
reactos/subsystems/win32/win32k/include/ntuser.h
reactos/subsystems/win32/win32k/include/object.h
reactos/subsystems/win32/win32k/include/userfuncs.h
reactos/subsystems/win32/win32k/misc/err.c
reactos/subsystems/win32/win32k/ntuser/clipboard.c
reactos/subsystems/win32/win32k/ntuser/focus.c
reactos/subsystems/win32/win32k/ntuser/hotkey.c
reactos/subsystems/win32/win32k/ntuser/misc.c
reactos/subsystems/win32/win32k/ntuser/ntuser.c
reactos/subsystems/win32/win32k/ntuser/object.c
reactos/subsystems/win32/win32k/ntuser/windc.c
reactos/subsystems/win32/win32k/ntuser/window.c
reactos/subsystems/win32/win32k/objects/device.c
reactos/subsystems/win32/win32k/objects/gdiobj.c

index cf247d8..367715c 100644 (file)
@@ -12,10 +12,10 @@ typedef struct _ACCELERATOR_TABLE
 } ACCELERATOR_TABLE, *PACCELERATOR_TABLE;
 
 NTSTATUS FASTCALL
-InitAcceleratorImpl();
+InitAcceleratorImpl(VOID);
 
 NTSTATUS FASTCALL
-CleanupAcceleratorImpl();
+CleanupAcceleratorImpl(VOID);
 
 PACCELERATOR_TABLE FASTCALL UserGetAccelObject(HACCEL);
 
index 023fad7..c92ae4d 100644 (file)
@@ -233,7 +233,7 @@ DC_vSelectPalette(PDC pdc, PPALETTE ppal)
 }
 
 BOOL FASTCALL
-IntPrepareDriverIfNeeded();
+IntPrepareDriverIfNeeded(VOID);
 extern PDEVOBJ PrimarySurface;
 
 #endif /* not __WIN32K_DC_H */
index cf637b4..6b92353 100644 (file)
@@ -10,7 +10,7 @@ SetLastWin32Error(
   DWORD Status);
 
 NTSTATUS FASTCALL
-GetLastNtError();
+GetLastNtError(VOID);
 
 #endif /* _WIN32K_ERROR_H */
 
index e971b0e..03438bb 100644 (file)
@@ -5,17 +5,17 @@
  * These functions take the window handles from current message queue.
  */
 HWND FASTCALL
-IntGetCaptureWindow();
+IntGetCaptureWindow(VOID);
 HWND FASTCALL
-IntGetFocusWindow();
+IntGetFocusWindow(VOID);
 
 /*
  * These functions take the window handles from current thread queue.
  */
 HWND FASTCALL
-IntGetThreadFocusWindow();
-HWND APIENTRY IntGetCapture();
-HWND FASTCALL UserGetActiveWindow();
+IntGetThreadFocusWindow(VOID);
+HWND APIENTRY IntGetCapture(VOID);
+HWND FASTCALL UserGetActiveWindow(VOID);
 
 BOOL FASTCALL
 co_IntMouseActivateWindow(PWINDOW_OBJECT Window);
index 7878d3f..3cdcd7b 100644 (file)
@@ -2,8 +2,8 @@
 #define _WIN32K_GUICHECK_H
 
 BOOL FASTCALL co_IntGraphicsCheck(BOOL Create);
-BOOL FASTCALL IntCreatePrimarySurface();
-VOID FASTCALL IntDestroyPrimarySurface();
+BOOL FASTCALL IntCreatePrimarySurface(VOID);
+VOID FASTCALL IntDestroyPrimarySurface(VOID);
 
 NTSTATUS FASTCALL InitGuiCheckImpl (VOID);
 
index 9b9c103..25c79fc 100644 (file)
@@ -15,7 +15,7 @@ typedef struct _HOT_KEY_ITEM
 } HOT_KEY_ITEM, *PHOT_KEY_ITEM;
 
 NTSTATUS FASTCALL
-InitHotkeyImpl();
+InitHotkeyImpl(VOID);
 
 //NTSTATUS FASTCALL
 //CleanupHotKeys(PWINSTATION_OBJECT WinStaObject);
index 08d358e..6ec5f26 100644 (file)
@@ -24,7 +24,7 @@ extern BOOL APIENTRY IntEngLeave(PINTENG_ENTER_LEAVE EnterLeave);
 extern HGDIOBJ StockObjects[];
 extern SHORT gusLanguageID;
 
-SHORT FASTCALL IntGdiGetLanguageID();
+SHORT FASTCALL IntGdiGetLanguageID(VOID);
 DWORD APIENTRY IntGetQueueStatus(BOOL ClearChanges);
 VOID FASTCALL IntUserManualGuiCheck(LONG Check);
 PVOID APIENTRY HackSecureVirtualMemory(IN PVOID,IN SIZE_T,IN ULONG,OUT PVOID *);
index e11eece..d64e246 100644 (file)
@@ -17,8 +17,8 @@ VOID FASTCALL CleanupUserImpl(VOID);
 VOID FASTCALL UserEnterShared(VOID);
 VOID FASTCALL UserEnterExclusive(VOID);
 VOID FASTCALL UserLeave(VOID);
-BOOL FASTCALL UserIsEntered();
-BOOL FASTCALL UserIsEnteredExclusive();
+BOOL FASTCALL UserIsEntered(VOID);
+BOOL FASTCALL UserIsEnteredExclusive(VOID);
 
 
 #endif /* _WIN32K_NTUSER_H */
index 76af581..c3452de 100644 (file)
@@ -115,7 +115,7 @@ HANDLE UserAllocHandle(PUSER_HANDLE_TABLE ht, PVOID object, USER_OBJECT_TYPE typ
 BOOL UserFreeHandle(PUSER_HANDLE_TABLE ht, HANDLE handle );
 PVOID UserGetNextHandle(PUSER_HANDLE_TABLE ht, HANDLE* handle, USER_OBJECT_TYPE type );
 PUSER_HANDLE_ENTRY handle_to_entry(PUSER_HANDLE_TABLE ht, HANDLE handle );
-BOOL FASTCALL UserCreateHandleTable();
+BOOL FASTCALL UserCreateHandleTable(VOID);
 VOID UserInitHandleTable(PUSER_HANDLE_TABLE ht, PVOID mem, ULONG bytes);
 
 
index 84911e8..9c3b620 100644 (file)
@@ -53,7 +53,7 @@ UserGetClientOrigin(PWINDOW_OBJECT Window, LPPOINT Point);
 
 /*************** FOCUS.C ***************/
 
-HWND FASTCALL UserGetActiveWindow();
+HWND FASTCALL UserGetActiveWindow(VOID);
 
 HWND FASTCALL UserGetForegroundWindow(VOID);
 
@@ -125,7 +125,7 @@ PWINDOW_OBJECT FASTCALL UserGetWindowObject(HWND hWnd);
 VOID FASTCALL
 co_DestroyThreadWindows(struct _ETHREAD *Thread);
 
-HWND FASTCALL UserGetShellWindow();
+HWND FASTCALL UserGetShellWindow(VOID);
 
 HWND FASTCALL UserGetWindow(HWND hWnd, UINT Relationship);
 
index 5943b4f..43225ce 100644 (file)
@@ -50,7 +50,7 @@ SetLastWin32Error(DWORD Status)
 }
 
 NTSTATUS FASTCALL
-GetLastNtError()
+GetLastNtError(VOID)
 {
   PTEB Teb = PsGetCurrentThread()->Tcb.Teb;
 
index a5dbb06..4781be1 100644 (file)
@@ -54,7 +54,7 @@ IntIsWindowInChain(PWINDOW_OBJECT window)
     return wce;
 }
 
-VOID FASTCALL printChain()
+VOID FASTCALL printChain(VOID)
 {
     /*test*/
     PCLIPBOARDCHAINELEMENT wce2 = WindowsChain;
@@ -148,7 +148,7 @@ intIsFormatAvailable(UINT format)
 
 /* counts how many distinct format were are in the clipboard */
 DWORD FASTCALL
-IntCountClipboardFormats()
+IntCountClipboardFormats(VOID)
 {
     DWORD ret = 0;
     PCLIPBOARDELEMENT ce = ClipboardData;
@@ -221,7 +221,7 @@ intRemoveFormatedData(UINT format)
 }
 
 VOID FASTCALL
-IntEmptyClipboardData()
+IntEmptyClipboardData(VOID)
 {
     PCLIPBOARDELEMENT ce = ClipboardData;
     PCLIPBOARDELEMENT tmp;
@@ -322,7 +322,7 @@ synthesizeData(UINT format)
 }
 
 VOID FASTCALL
-freeSynthesizedData()
+freeSynthesizedData(VOID)
 {
     ExFreePool(synthesizedData);
 }
@@ -330,7 +330,7 @@ freeSynthesizedData()
 /*==============================================================*/
 
 BOOL FASTCALL
-intIsClipboardOpenByMe()
+intIsClipboardOpenByMe(VOID)
 {
     /* check if we open the clipboard */
     if (ClipboardThread && ClipboardThread == PsGetCurrentThreadWin32Thread())
index 17fa6bd..fc3f9f8 100644 (file)
 #include <debug.h>
 
 HWND FASTCALL
-IntGetCaptureWindow()
+IntGetCaptureWindow(VOID)
 {
    PUSER_MESSAGE_QUEUE ForegroundQueue = IntGetFocusMessageQueue();
    return ForegroundQueue != NULL ? ForegroundQueue->CaptureWindow : 0;
 }
 
 HWND FASTCALL
-IntGetFocusWindow()
+IntGetFocusWindow(VOID)
 {
    PUSER_MESSAGE_QUEUE ForegroundQueue = IntGetFocusMessageQueue();
    return ForegroundQueue != NULL ? ForegroundQueue->FocusWindow : 0;
 }
 
 HWND FASTCALL
-IntGetThreadFocusWindow()
+IntGetThreadFocusWindow(VOID)
 {
    PTHREADINFO pti;
    PUSER_MESSAGE_QUEUE ThreadQueue;
@@ -445,7 +445,7 @@ CLEANUP:
 }
 
 
-HWND FASTCALL UserGetActiveWindow()
+HWND FASTCALL UserGetActiveWindow(VOID)
 {
    PTHREADINFO pti;
    PUSER_MESSAGE_QUEUE ThreadQueue;
index f599ee4..bf2ee79 100644 (file)
@@ -53,7 +53,7 @@ LIST_ENTRY gHotkeyList;
 /* FUNCTIONS *****************************************************************/
 
 NTSTATUS FASTCALL
-InitHotkeyImpl()
+InitHotkeyImpl(VOID)
 {
    InitializeListHead(&gHotkeyList);
 
@@ -63,7 +63,7 @@ InitHotkeyImpl()
 
 #if 0 //not used
 NTSTATUS FASTCALL
-CleanupHotKeys()
+CleanupHotKeys(VOID)
 {
 
    return STATUS_SUCCESS;
index 3deaaf2..1085ec3 100644 (file)
@@ -16,7 +16,7 @@
 
 SHORT
 FASTCALL
-IntGdiGetLanguageID()
+IntGdiGetLanguageID(VOID)
 {
   HANDLE KeyHandle;
   ULONG Size = sizeof(WCHAR) * (MAX_PATH + 12);
index ec8c841..bcdf6cc 100644 (file)
@@ -180,13 +180,13 @@ NtUserInitialize(
 RETURN
    True if current thread owns the lock (possibly shared)
 */
-BOOL FASTCALL UserIsEntered()
+BOOL FASTCALL UserIsEntered(VOID)
 {
    return ExIsResourceAcquiredExclusiveLite(&UserLock)
       || ExIsResourceAcquiredSharedLite(&UserLock);
 }
 
-BOOL FASTCALL UserIsEnteredExclusive()
+BOOL FASTCALL UserIsEnteredExclusive(VOID)
 {
    return ExIsResourceAcquiredExclusiveLite(&UserLock);
 }
index 0221c57..fd3ba24 100644 (file)
@@ -402,7 +402,7 @@ BOOL FASTCALL UserDereferenceObject(PVOID obj)
 
 
 
-BOOL FASTCALL UserCreateHandleTable()
+BOOL FASTCALL UserCreateHandleTable(VOID)
 {
 
    PVOID mem;
index a78cdb2..3ff1d5b 100644 (file)
@@ -713,7 +713,7 @@ DceFreeClassDCE(HDC hDC)
 }
 
 VOID FASTCALL
-DceEmptyCache()
+DceEmptyCache(VOID)
 {
    PDCE pDCE = FirstDce;
    KeEnterCriticalRegion();
index 2250b7d..e062f78 100644 (file)
@@ -3272,7 +3272,7 @@ CLEANUP:
  * Status
  *    @implemented
  */
-HWND FASTCALL UserGetShellWindow()
+HWND FASTCALL UserGetShellWindow(VOID)
 {
    PWINSTATION_OBJECT WinStaObject;
    HWND Ret;
index 3b8af79..53fea84 100644 (file)
@@ -202,7 +202,7 @@ SetupDevMode(PDEVMODEW DevMode, ULONG DisplayNumber)
 }
 
 static BOOL FASTCALL
-IntPrepareDriver()
+IntPrepareDriver(VOID)
 {
     PFN_DrvEnableDriver GDEnableDriver;
     DRVENABLEDATA DED;
@@ -437,13 +437,13 @@ cleanup:
 }
 
 BOOL FASTCALL
-IntPrepareDriverIfNeeded()
+IntPrepareDriverIfNeeded(VOID)
 {
     return (PrimarySurface.PreparedDriver ? TRUE : IntPrepareDriver());
 }
 
 static BOOL FASTCALL
-PrepareVideoPrt()
+PrepareVideoPrt(VOID)
 {
     PIRP Irp;
     NTSTATUS Status;
@@ -499,7 +499,7 @@ PrepareVideoPrt()
 
 
 BOOL FASTCALL
-IntCreatePrimarySurface()
+IntCreatePrimarySurface(VOID)
 {
     SIZEL SurfSize;
     RECTL SurfaceRect;
@@ -573,7 +573,7 @@ IntCreatePrimarySurface()
 }
 
 VOID FASTCALL
-IntDestroyPrimarySurface()
+IntDestroyPrimarySurface(VOID)
 {
     BOOL calledFromUser;
 
index 8ad5d23..ec9efde 100644 (file)
@@ -196,7 +196,7 @@ LockErrorDebugOutput(HGDIOBJ hObj, PGDI_TABLE_ENTRY Entry, LPSTR Function)
 
 ULONG
 FASTCALL
-InterlockedPopFreeEntry()
+InterlockedPopFreeEntry(VOID)
 {
     ULONG idxFirst, idxNext, idxPrev;
     PGDI_TABLE_ENTRY pEntry;