Sprinkle win32k with some explicit voids,
[reactos.git] / reactos / subsystems / win32 / win32k / ntuser / clipboard.c
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())