mirror of
https://github.com/reactos/reactos.git
synced 2025-01-06 06:20:13 +00:00
Sprinkle win32k with some explicit voids,
svn path=/trunk/; revision=42926
This commit is contained in:
parent
4a1bc02d08
commit
d412903cb1
21 changed files with 42 additions and 42 deletions
|
@ -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);
|
||||
|
||||
|
|
|
@ -233,7 +233,7 @@ DC_vSelectPalette(PDC pdc, PPALETTE ppal)
|
|||
}
|
||||
|
||||
BOOL FASTCALL
|
||||
IntPrepareDriverIfNeeded();
|
||||
IntPrepareDriverIfNeeded(VOID);
|
||||
extern PDEVOBJ PrimarySurface;
|
||||
|
||||
#endif /* not __WIN32K_DC_H */
|
||||
|
|
|
@ -10,7 +10,7 @@ SetLastWin32Error(
|
|||
DWORD Status);
|
||||
|
||||
NTSTATUS FASTCALL
|
||||
GetLastNtError();
|
||||
GetLastNtError(VOID);
|
||||
|
||||
#endif /* _WIN32K_ERROR_H */
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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 *);
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
|
@ -50,7 +50,7 @@ SetLastWin32Error(DWORD Status)
|
|||
}
|
||||
|
||||
NTSTATUS FASTCALL
|
||||
GetLastNtError()
|
||||
GetLastNtError(VOID)
|
||||
{
|
||||
PTEB Teb = PsGetCurrentThread()->Tcb.Teb;
|
||||
|
||||
|
|
|
@ -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())
|
||||
|
|
|
@ -24,21 +24,21 @@
|
|||
#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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
|
||||
SHORT
|
||||
FASTCALL
|
||||
IntGdiGetLanguageID()
|
||||
IntGdiGetLanguageID(VOID)
|
||||
{
|
||||
HANDLE KeyHandle;
|
||||
ULONG Size = sizeof(WCHAR) * (MAX_PATH + 12);
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -402,7 +402,7 @@ BOOL FASTCALL UserDereferenceObject(PVOID obj)
|
|||
|
||||
|
||||
|
||||
BOOL FASTCALL UserCreateHandleTable()
|
||||
BOOL FASTCALL UserCreateHandleTable(VOID)
|
||||
{
|
||||
|
||||
PVOID mem;
|
||||
|
|
|
@ -713,7 +713,7 @@ DceFreeClassDCE(HDC hDC)
|
|||
}
|
||||
|
||||
VOID FASTCALL
|
||||
DceEmptyCache()
|
||||
DceEmptyCache(VOID)
|
||||
{
|
||||
PDCE pDCE = FirstDce;
|
||||
KeEnterCriticalRegion();
|
||||
|
|
|
@ -3272,7 +3272,7 @@ CLEANUP:
|
|||
* Status
|
||||
* @implemented
|
||||
*/
|
||||
HWND FASTCALL UserGetShellWindow()
|
||||
HWND FASTCALL UserGetShellWindow(VOID)
|
||||
{
|
||||
PWINSTATION_OBJECT WinStaObject;
|
||||
HWND Ret;
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue