Author: rmessiant
Date: Wed Mar 16 21:07:25 2011
New Revision: 51072
URL:
http://svn.reactos.org/svn/reactos?rev=51072&view=rev
Log:
[GENERAL]
Patch by Rafal Harabien (rafalh1992 at o2 dot pl)
- Change () to (VOID) in function declarators. Part 6/XX.
[USETUP]
Patch by Rafal Harabien (rafalh1992 at o2 dot pl)
- Initialize Offset field of partition list. Spotted using DPH.
Modified:
trunk/reactos/base/applications/paint/dialogs.h
trunk/reactos/base/setup/usetup/partlist.c
trunk/reactos/base/shell/explorer/externals.h
trunk/reactos/base/shell/explorer/notifyhook/notifyhook.h
trunk/reactos/boot/freeldr/freeldr/arch/powerpc/compat.h
trunk/reactos/boot/freeldr/freeldr/arch/powerpc/prep.h
trunk/reactos/boot/freeldr/freeldr/include/arch/amd64/amd64.h
trunk/reactos/boot/freeldr/freeldr/include/arch/amd64/machpc.h
trunk/reactos/boot/freeldr/freeldr/include/machine.h
trunk/reactos/drivers/storage/ide/uniata/inc/PostDbgMesg.h
trunk/reactos/drivers/usb/nt4compat/usbdriver/usb.h
trunk/reactos/drivers/usb/usbehci/physmem.h
trunk/reactos/drivers/video/displays/vga/vgavideo/vgavideo.h
trunk/reactos/drivers/video/miniport/vga/vgamp.h
trunk/reactos/drivers/wdm/audio/legacy/wdmaud/wdmaud.h
trunk/reactos/include/crt/eh.h
trunk/reactos/include/crt/rtcapi.h
trunk/reactos/include/crt/xlocinfo.h
trunk/reactos/include/psdk/commctrl.h
trunk/reactos/include/psdk/ntgdi.h
trunk/reactos/include/psdk/shlwapi_undoc.h
trunk/reactos/include/psdk/uxtheme.h
trunk/reactos/include/psdk/ws2tcpip.h
trunk/reactos/include/reactos/drivers/directx/dxeng.h
trunk/reactos/include/reactos/libs/audiosrv/audiosrv.h
trunk/reactos/include/reactos/libs/ppcmmu/mmuutil.h
trunk/reactos/include/reactos/libs/sound/mmebuddy.h
trunk/reactos/include/reactos/libs/sound/time.h
trunk/reactos/lib/drivers/oskittcp/include/oskittcp.h
trunk/reactos/lib/fslib/vfatlib/check/io.h
trunk/reactos/lib/ppcmmu/mmuobject.h
trunk/reactos/ntoskrnl/include/internal/amd64/ke.h
trunk/reactos/ntoskrnl/include/internal/kd.h
trunk/reactos/ntoskrnl/kdbg/kdb.h
trunk/reactos/subsystems/win32/win32k/include/callback.h
trunk/reactos/subsystems/win32/win32k/include/cursoricon.h
trunk/reactos/subsystems/win32/win32k/include/dc.h
trunk/reactos/subsystems/win32/win32k/include/device.h
trunk/reactos/subsystems/win32/win32k/include/gdidebug.h
trunk/reactos/subsystems/win32/win32k/include/gdiobj.h
trunk/reactos/subsystems/win32/win32k/include/input.h
trunk/reactos/subsystems/win32/win32k/include/ldevobj.h
trunk/reactos/subsystems/win32/win32k/include/monitor.h
trunk/reactos/subsystems/win32/win32k/include/msgqueue.h
trunk/reactos/subsystems/win32/win32k/include/palette.h
trunk/reactos/subsystems/win32/win32k/include/pdevobj.h
Modified: trunk/reactos/base/applications/paint/dialogs.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/paint/di…
==============================================================================
--- trunk/reactos/base/applications/paint/dialogs.h [iso-8859-1] (original)
+++ trunk/reactos/base/applications/paint/dialogs.h [iso-8859-1] Wed Mar 16 21:07:25 2011
@@ -10,4 +10,4 @@
int attributesDlg(void);
-int changeSizeDlg();
+int changeSizeDlg(void);
Modified: trunk/reactos/base/setup/usetup/partlist.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/setup/usetup/partlist…
==============================================================================
--- trunk/reactos/base/setup/usetup/partlist.c [iso-8859-1] (original)
+++ trunk/reactos/base/setup/usetup/partlist.c [iso-8859-1] Wed Mar 16 21:07:25 2011
@@ -944,6 +944,7 @@
List->Bottom = Bottom;
List->Line = 0;
+ List->Offset = 0;
List->TopDisk = (ULONG)-1;
List->TopPartition = (ULONG)-1;
Modified: trunk/reactos/base/shell/explorer/externals.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/explorer/extern…
==============================================================================
--- trunk/reactos/base/shell/explorer/externals.h [iso-8859-1] (original)
+++ trunk/reactos/base/shell/explorer/externals.h [iso-8859-1] Wed Mar 16 21:07:25 2011
@@ -41,7 +41,7 @@
extern void explorer_about(HWND hwndParent);
// test for already running desktop instance
-extern BOOL IsAnyDesktopRunning();
+extern BOOL IsAnyDesktopRunning(void);
// show shutdown dialog
extern void ShowExitWindowsDialog(HWND hwndOwner);
Modified: trunk/reactos/base/shell/explorer/notifyhook/notifyhook.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/explorer/notify…
==============================================================================
--- trunk/reactos/base/shell/explorer/notifyhook/notifyhook.h [iso-8859-1] (original)
+++ trunk/reactos/base/shell/explorer/notifyhook/notifyhook.h [iso-8859-1] Wed Mar 16
21:07:25 2011
@@ -39,8 +39,8 @@
extern "C" {
#endif
-DECL_NOTIFYHOOK UINT InstallNotifyHook();
-DECL_NOTIFYHOOK void DeinstallNotifyHook();
+DECL_NOTIFYHOOK UINT InstallNotifyHook(void);
+DECL_NOTIFYHOOK void DeinstallNotifyHook(void);
DECL_NOTIFYHOOK void GetWindowModulePath(HWND hwnd);
DECL_NOTIFYHOOK int GetWindowModulePathCopyData(LPARAM lparam, HWND* phwnd, LPSTR buffer,
int size);
Modified: trunk/reactos/boot/freeldr/freeldr/arch/powerpc/compat.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/arch/…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/arch/powerpc/compat.h [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/freeldr/arch/powerpc/compat.h [iso-8859-1] Wed Mar 16
21:07:25 2011
@@ -102,4 +102,4 @@
void *ioremap(__u32 phys, __u32 size);
void iounmap(void *logical);
-__u32 GetPVR();
+__u32 GetPVR(void);
Modified: trunk/reactos/boot/freeldr/freeldr/arch/powerpc/prep.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/arch/…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/arch/powerpc/prep.h [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/freeldr/arch/powerpc/prep.h [iso-8859-1] Wed Mar 16
21:07:25 2011
@@ -7,8 +7,8 @@
unsigned long data;
};
-void sync();
-void PpcPrepInit();
+void sync( void );
+void PpcPrepInit( void );
void ide_seek( void *extension, int low, int high );
int ide_read( void *extension, char *buffer, int bytes );
void ide_setup( void *extension );
Modified: trunk/reactos/boot/freeldr/freeldr/include/arch/amd64/amd64.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/inclu…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/include/arch/amd64/amd64.h [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/freeldr/include/arch/amd64/amd64.h [iso-8859-1] Wed Mar 16
21:07:25 2011
@@ -58,7 +58,7 @@
} PAGE_DIRECTORY_AMD64, *PPAGE_DIRECTORY_AMD64;
-VOID FrLdrSetupGdtIdt();
+VOID FrLdrSetupGdtIdt(VOID);
#endif
Modified: trunk/reactos/boot/freeldr/freeldr/include/arch/amd64/machpc.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/inclu…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/include/arch/amd64/machpc.h [iso-8859-1]
(original)
+++ trunk/reactos/boot/freeldr/freeldr/include/arch/amd64/machpc.h [iso-8859-1] Wed Mar 16
21:07:25 2011
@@ -29,8 +29,8 @@
VOID PcMachInit(const char *CmdLine);
VOID PcConsPutChar(int Ch);
-BOOLEAN PcConsKbHit();
-int PcConsGetCh();
+BOOLEAN PcConsKbHit(VOID);
+int PcConsGetCh(VOID);
VOID PcVideoClearScreen(UCHAR Attr);
VIDEODISPLAYMODE PcVideoSetDisplayMode(char *DisplayMode, BOOLEAN Init);
Modified: trunk/reactos/boot/freeldr/freeldr/include/machine.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/inclu…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/include/machine.h [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/freeldr/include/machine.h [iso-8859-1] Wed Mar 16 21:07:25
2011
@@ -77,8 +77,8 @@
extern MACHVTBL MachVtbl;
VOID MachConsPutChar(int Ch);
-BOOLEAN MachConsKbHit();
-int MachConsGetCh();
+BOOLEAN MachConsKbHit(VOID);
+int MachConsGetCh(VOID);
VOID MachVideoClearScreen(UCHAR Attr);
VIDEODISPLAYMODE MachVideoSetDisplayMode(char *DisplayMode, BOOLEAN Init);
VOID MachVideoGetDisplaySize(PULONG Width, PULONG Height, PULONG Depth);
Modified: trunk/reactos/drivers/storage/ide/uniata/inc/PostDbgMesg.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/storage/ide/uniata…
==============================================================================
--- trunk/reactos/drivers/storage/ide/uniata/inc/PostDbgMesg.h [iso-8859-1] (original)
+++ trunk/reactos/drivers/storage/ide/uniata/inc/PostDbgMesg.h [iso-8859-1] Wed Mar 16
21:07:25 2011
@@ -27,11 +27,11 @@
BOOLEAN
__stdcall
-DbgDump_Reconnect();
+DbgDump_Reconnect(VOID);
VOID
__stdcall
-DbgDump_Disconnect();
+DbgDump_Disconnect(VOID);
VOID
__stdcall
Modified: trunk/reactos/drivers/usb/nt4compat/usbdriver/usb.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/usb/nt4compat/usbd…
==============================================================================
--- trunk/reactos/drivers/usb/nt4compat/usbdriver/usb.h [iso-8859-1] (original)
+++ trunk/reactos/drivers/usb/nt4compat/usbdriver/usb.h [iso-8859-1] Wed Mar 16 21:07:25
2011
@@ -1049,7 +1049,7 @@
);
VOID
-usb_cal_cpu_freq();
+usb_cal_cpu_freq(VOID);
NTSTATUS
usb_reset_pipe_ex(
Modified: trunk/reactos/drivers/usb/usbehci/physmem.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/usb/usbehci/physme…
==============================================================================
--- trunk/reactos/drivers/usb/usbehci/physmem.h [iso-8859-1] (original)
+++ trunk/reactos/drivers/usb/usbehci/physmem.h [iso-8859-1] Wed Mar 16 21:07:25 2011
@@ -16,7 +16,7 @@
} MEM_HEADER, *PMEM_HEADER;
VOID
-DumpPages();
+DumpPages(VOID);
ULONG
AllocateMemory(PEHCI_HOST_CONTROLLER hcd, ULONG Size, ULONG *PhysicalAddress);
Modified: trunk/reactos/drivers/video/displays/vga/vgavideo/vgavideo.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/video/displays/vga…
==============================================================================
--- trunk/reactos/drivers/video/displays/vga/vgavideo/vgavideo.h [iso-8859-1] (original)
+++ trunk/reactos/drivers/video/displays/vga/vgavideo/vgavideo.h [iso-8859-1] Wed Mar 16
21:07:25 2011
@@ -41,7 +41,7 @@
unsigned char Attrib[21];
} VideoMode;
-VOID vgaPreCalc();
+VOID vgaPreCalc(VOID);
VOID vgaPutPixel(INT x, INT y, UCHAR c);
VOID vgaPutByte(INT x, INT y, UCHAR c);
VOID vgaGetByte(ULONG offset,
Modified: trunk/reactos/drivers/video/miniport/vga/vgamp.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/video/miniport/vga…
==============================================================================
--- trunk/reactos/drivers/video/miniport/vga/vgamp.h [iso-8859-1] (original)
+++ trunk/reactos/drivers/video/miniport/vga/vgamp.h [iso-8859-1] Wed Mar 16 21:07:25
2011
@@ -34,8 +34,8 @@
#define UNIMPLEMENTED \
VideoPortDebugPrint(Error, "WARNING: %s at %s:%d is
UNIMPLEMENTED!\n",__FUNCTION__,__FILE__,__LINE__);
-void
-InitVGAMode();
+VOID
+InitVGAMode(VOID);
VP_STATUS NTAPI
VGAFindAdapter(
Modified: trunk/reactos/drivers/wdm/audio/legacy/wdmaud/wdmaud.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/wdm/audio/legacy/w…
==============================================================================
--- trunk/reactos/drivers/wdm/audio/legacy/wdmaud/wdmaud.h [iso-8859-1] (original)
+++ trunk/reactos/drivers/wdm/audio/legacy/wdmaud/wdmaud.h [iso-8859-1] Wed Mar 16
21:07:25 2011
@@ -280,19 +280,19 @@
OUT PFILE_OBJECT * FileObject);
ULONG
-WdmAudGetMixerDeviceCount();
-
-ULONG
-WdmAudGetWaveInDeviceCount();
-
-ULONG
-WdmAudGetWaveOutDeviceCount();
-
-ULONG
-WdmAudGetMidiInDeviceCount();
-
-ULONG
-WdmAudGetMidiOutDeviceCount();
+WdmAudGetMixerDeviceCount(VOID);
+
+ULONG
+WdmAudGetWaveInDeviceCount(VOID);
+
+ULONG
+WdmAudGetWaveOutDeviceCount(VOID);
+
+ULONG
+WdmAudGetMidiInDeviceCount(VOID);
+
+ULONG
+WdmAudGetMidiOutDeviceCount(VOID);
NTSTATUS
WdmAudGetPnpNameByIndexAndType(
Modified: trunk/reactos/include/crt/eh.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/crt/eh.h?rev=51072…
==============================================================================
--- trunk/reactos/include/crt/eh.h [iso-8859-1] (original)
+++ trunk/reactos/include/crt/eh.h [iso-8859-1] Wed Mar 16 21:07:25 2011
@@ -16,10 +16,10 @@
#error eh.h is only for C++!
#endif
-typedef void (__cdecl *terminate_function)();
-typedef void (__cdecl *terminate_handler)();
-typedef void (__cdecl *unexpected_function)();
-typedef void (__cdecl *unexpected_handler)();
+typedef void (__cdecl *terminate_function)(void);
+typedef void (__cdecl *terminate_handler)(void);
+typedef void (__cdecl *unexpected_function)(void);
+typedef void (__cdecl *unexpected_handler)(void);
struct _EXCEPTION_POINTERS;
typedef void (__cdecl *_se_translator_function)(unsigned int,struct _EXCEPTION_POINTERS
*);
@@ -32,7 +32,7 @@
_CRTIMP unexpected_function __cdecl set_unexpected(unexpected_function _NewPtFunc);
extern "C" _CRTIMP unexpected_function __cdecl _get_unexpected(void);
_CRTIMP _se_translator_function __cdecl _set_se_translator(_se_translator_function
_NewPtFunc);
-_CRTIMP bool __cdecl __uncaught_exception();
+_CRTIMP bool __cdecl __uncaught_exception(void);
#pragma pack(pop)
#endif
Modified: trunk/reactos/include/crt/rtcapi.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/crt/rtcapi.h?rev=5…
==============================================================================
--- trunk/reactos/include/crt/rtcapi.h [iso-8859-1] (original)
+++ trunk/reactos/include/crt/rtcapi.h [iso-8859-1] Wed Mar 16 21:07:25 2011
@@ -76,7 +76,7 @@
__MINGW_EXTENSION int __fastcall _RTC_Check_8_to_4(__int64 _Src);
#if (defined(_X86_) && !defined(__x86_64))
- void __cdecl _RTC_CheckEsp();
+ void __cdecl _RTC_CheckEsp(void);
#endif
void __fastcall _RTC_CheckStackVars(void *_Esp,_RTC_framedesc *_Fd);
void __fastcall _RTC_CheckStackVars2(void *_Esp,_RTC_framedesc *_Fd,_RTC_ALLOCA_NODE
*_AllocaList);
@@ -85,7 +85,7 @@
void __cdecl _RTC_Shutdown(void);
void __cdecl _RTC_InitBase(void);
#ifdef __cplusplus
- void *_ReturnAddress();
+ void *_ReturnAddress(void);
}
#endif
Modified: trunk/reactos/include/crt/xlocinfo.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/crt/xlocinfo.h?rev…
==============================================================================
--- trunk/reactos/include/crt/xlocinfo.h [iso-8859-1] (original)
+++ trunk/reactos/include/crt/xlocinfo.h [iso-8859-1] Wed Mar 16 21:07:25 2011
@@ -62,10 +62,10 @@
unsigned int _Page;
} _Cvtvec;
-_CRTIMP _Collvec __cdecl _Getcoll();
-_CRTIMP _Ctypevec __cdecl _Getctype();
-_CRTIMP _Cvtvec __cdecl _Getcvt();
-_CRTIMP int __cdecl _Getdateorder();
+_CRTIMP _Collvec __cdecl _Getcoll(void);
+_CRTIMP _Ctypevec __cdecl _Getctype(void);
+_CRTIMP _Cvtvec __cdecl _Getcvt(void);
+_CRTIMP int __cdecl _Getdateorder(void);
_CRTIMP int __cdecl _Mbrtowc(wchar_t *,const char *,size_t,mbstate_t *,const _Cvtvec *);
_CRTIMP float __cdecl _Stof(const char *,char **,long);
_CRTIMP double __cdecl _Stod(const char *,char **,long);
@@ -85,9 +85,9 @@
_C_STD_END
_C_LIB_DECL
-_CRTIMP void *__cdecl _Gettnames();
-_CRTIMP char *__cdecl _Getdays();
-_CRTIMP char *__cdecl _Getmonths();
+_CRTIMP void *__cdecl _Gettnames(void);
+_CRTIMP char *__cdecl _Getdays(void);
+_CRTIMP char *__cdecl _Getmonths(void);
_CRTIMP size_t __cdecl _Strftime(char *,size_t _Maxsize,const char *,const struct tm
*,void *);
_END_C_LIB_DECL
Modified: trunk/reactos/include/psdk/commctrl.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/psdk/commctrl.h?re…
==============================================================================
--- trunk/reactos/include/psdk/commctrl.h [iso-8859-1] (original)
+++ trunk/reactos/include/psdk/commctrl.h [iso-8859-1] Wed Mar 16 21:07:25 2011
@@ -381,7 +381,7 @@
#define ILCF_SWAP 0x1
WINCOMMCTRLAPI WINBOOL WINAPI ImageList_Copy(HIMAGELIST himlDst,int iDst,HIMAGELIST
himlSrc,int iSrc,UINT uFlags);
WINCOMMCTRLAPI WINBOOL WINAPI ImageList_BeginDrag(HIMAGELIST himlTrack,int iTrack,int
dxHotspot,int dyHotspot);
- WINCOMMCTRLAPI void WINAPI ImageList_EndDrag();
+ WINCOMMCTRLAPI void WINAPI ImageList_EndDrag(void);
WINCOMMCTRLAPI WINBOOL WINAPI ImageList_DragEnter(HWND hwndLock,int x,int y);
WINCOMMCTRLAPI WINBOOL WINAPI ImageList_DragLeave(HWND hwndLock);
WINCOMMCTRLAPI WINBOOL WINAPI ImageList_DragMove(int x,int y);
Modified: trunk/reactos/include/psdk/ntgdi.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/psdk/ntgdi.h?rev=5…
==============================================================================
--- trunk/reactos/include/psdk/ntgdi.h [iso-8859-1] (original)
+++ trunk/reactos/include/psdk/ntgdi.h [iso-8859-1] Wed Mar 16 21:07:25 2011
@@ -80,7 +80,7 @@
W32KAPI
BOOL
APIENTRY
-NtGdiInit();
+NtGdiInit(VOID);
W32KAPI
INT
@@ -1239,7 +1239,7 @@
W32KAPI
VOID
APIENTRY
-NtGdiFlush();
+NtGdiFlush(VOID);
W32KAPI
HDC
@@ -3277,7 +3277,7 @@
W32KAPI
CLIPOBJ*
APIENTRY
-NtGdiEngCreateClip();
+NtGdiEngCreateClip(VOID);
W32KAPI
VOID
@@ -3660,7 +3660,7 @@
W32KAPI
BOOL
APIENTRY
-NtGdiInitSpool();
+NtGdiInitSpool(VOID);
/* FIXME wrong prototypes fix the build */
W32KAPI
Modified: trunk/reactos/include/psdk/shlwapi_undoc.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/psdk/shlwapi_undoc…
==============================================================================
--- trunk/reactos/include/psdk/shlwapi_undoc.h [iso-8859-1] (original)
+++ trunk/reactos/include/psdk/shlwapi_undoc.h [iso-8859-1] Wed Mar 16 21:07:25 2011
@@ -47,7 +47,7 @@
void WINAPI InitOCHostClass(long param8);
long WINAPI SHOpenFolderWindow(IEThreadParamBlock *param8);
-void WINAPI SHCreateSavedWindows();
+void WINAPI SHCreateSavedWindows(void);
long WINAPI SHCreateFromDesktop(long param8);
long WINAPI SHExplorerParseCmdLine(LPCTSTR commandLine);
void WINAPI UEMRegisterNotify(long param8, long paramC);
@@ -59,11 +59,11 @@
long WINAPI SHParseIECommandLine(long param8, long paramC);
void WINAPI SHDestroyIETHREADPARAM(IEThreadParamBlock *param);
HRESULT WINAPI SHOnCWMCommandLine(long param8);
-LPITEMIDLIST WINAPI Channel_GetFolderPidl();
+LPITEMIDLIST WINAPI Channel_GetFolderPidl(void);
IUnknown *WINAPI ChannelBand_Create(LPITEMIDLIST pidl);
HRESULT WINAPI Channels_SetBandInfoSFB(IUnknown *param8);
HRESULT WINAPI IUnknown_SetBandInfoSFB(IUnknown *param8, long paramC);
-HRESULT WINAPI Channel_QuickLaunch();
+HRESULT WINAPI Channel_QuickLaunch(void);
HRESULT WINAPI SHGetNavigateTarget(long param8, long paramC, long param10, long
param14);
HRESULT WINAPI GetInfoTip(IUnknown *param8, long paramC, LPTSTR *param10, long cchMax);
HRESULT WINAPI SHEnumClassesOfCategories(long param8, long paramC, long param10, long
param14, long param18);
Modified: trunk/reactos/include/psdk/uxtheme.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/psdk/uxtheme.h?rev…
==============================================================================
--- trunk/reactos/include/psdk/uxtheme.h [iso-8859-1] (original)
+++ trunk/reactos/include/psdk/uxtheme.h [iso-8859-1] Wed Mar 16 21:07:25 2011
@@ -96,7 +96,7 @@
HRESULT WINAPI EnableThemeDialogTexture(HWND,DWORD);
HRESULT WINAPI EnableTheming(BOOL);
HRESULT WINAPI GetCurrentThemeName(LPWSTR,int,LPWSTR,int,LPWSTR,int);
-DWORD WINAPI GetThemeAppProperties();
+DWORD WINAPI GetThemeAppProperties(void);
HRESULT WINAPI GetThemeBackgroundContentRect(HTHEME,HDC,int,int,const RECT*,RECT*);
HRESULT WINAPI GetThemeBackgroundExtent(HTHEME,HDC,int,int,const RECT*,RECT*);
HRESULT WINAPI GetThemeBackgroundRegion(HTHEME,HDC,int,int,const RECT*,HRGN*);
@@ -126,8 +126,8 @@
HRESULT WINAPI GetThemeTextMetrics(HTHEME,HDC,int,int,TEXTMETRICW*);
HTHEME WINAPI GetWindowTheme(HWND);
HRESULT WINAPI HitTestThemeBackground(HTHEME,HDC,int,int,DWORD,const
RECT*,HRGN,POINT,WORD*);
-BOOL WINAPI IsAppThemed();
-BOOL WINAPI IsThemeActive();
+BOOL WINAPI IsAppThemed(void);
+BOOL WINAPI IsThemeActive(void);
BOOL WINAPI IsThemeBackgroundPartiallyTransparent(HTHEME,int,int);
BOOL WINAPI IsThemeDialogTextureEnabled(HWND);
BOOL WINAPI IsThemePartDefined(HTHEME,int,int);
Modified: trunk/reactos/include/psdk/ws2tcpip.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/psdk/ws2tcpip.h?re…
==============================================================================
--- trunk/reactos/include/psdk/ws2tcpip.h [iso-8859-1] (original)
+++ trunk/reactos/include/psdk/ws2tcpip.h [iso-8859-1] Wed Mar 16 21:07:25 2011
@@ -835,7 +835,7 @@
WINSOCK_API_LINKAGE
INT
WSAAPI
-WSARevertImpersonation();
+WSARevertImpersonation(VOID);
#endif /* _SECURE_SOCKET_TYPES_DEFINED_ */
#endif /* (_WIN32_WINNT >= 0x0600) */
Modified: trunk/reactos/include/reactos/drivers/directx/dxeng.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/reactos/drivers/di…
==============================================================================
--- trunk/reactos/include/reactos/drivers/directx/dxeng.h [iso-8859-1] (original)
+++ trunk/reactos/include/reactos/drivers/directx/dxeng.h [iso-8859-1] Wed Mar 16 21:07:25
2011
@@ -73,7 +73,7 @@
/************************************************************************/
/* win32k.sys internal protypes for driver functions it exports */
/************************************************************************/
-BOOLEAN NTAPI DxEngNUIsTermSrv();
+BOOLEAN NTAPI DxEngNUIsTermSrv(VOID);
PDC NTAPI DxEngLockDC(HDC hDC);
BOOLEAN NTAPI DxEngUnlockDC(PDC pDC);
DWORD_PTR NTAPI DxEngGetHdevData(HDEV, DXEGSHDEVDATA);
@@ -82,20 +82,20 @@
BOOLEAN NTAPI DxEngUnlockHdev(HDEV hdev);
DWORD_PTR NTAPI DxEngGetDCState(HDC hDC, DWORD type);
BOOLEAN NTAPI DxEngReferenceHdev(HDEV hdev);
-BOOLEAN NTAPI DxEngLockShareSem();
-BOOLEAN NTAPI DxEngUnlockShareSem();
-DWORD NTAPI DxEngScreenAccessCheck();
+BOOLEAN NTAPI DxEngLockShareSem(VOID);
+BOOLEAN NTAPI DxEngUnlockShareSem(VOID);
+DWORD NTAPI DxEngScreenAccessCheck(VOID);
BOOL NTAPI DxEngSetDCOwner(HGDIOBJ hObject, DWORD OwnerMask);
/* Prototypes for the following functions are not yet finished */
-BOOLEAN NTAPI DxEngRedrawDesktop();
-ULONG NTAPI DxEngDispUniq();
-ULONG NTAPI DxEngVisRgnUniq();
+BOOLEAN NTAPI DxEngRedrawDesktop(VOID);
+ULONG NTAPI DxEngDispUniq(VOID);
+ULONG NTAPI DxEngVisRgnUniq(VOID);
HDEV* NTAPI DxEngEnumerateHdev(HDEV *hdev);
BOOL NTAPI DxEngGetDeviceGammaRamp(HDEV hPDev, PGAMMARAMP Ramp);
BOOLEAN NTAPI DxEngSetDeviceGammaRamp(HDEV hPDev, PGAMMARAMP Ramp, BOOL Unuse);
BOOLEAN NTAPI DxEngCleanDC(HDC hdc);
-BOOLEAN NTAPI DxEngIncDispUniq();
+BOOLEAN NTAPI DxEngIncDispUniq(VOID);
HDC NTAPI DxEngCreateMemoryDC(HDEV hDev);
Modified: trunk/reactos/include/reactos/libs/audiosrv/audiosrv.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/reactos/libs/audio…
==============================================================================
--- trunk/reactos/include/reactos/libs/audiosrv/audiosrv.h [iso-8859-1] (original)
+++ trunk/reactos/include/reactos/libs/audiosrv/audiosrv.h [iso-8859-1] Wed Mar 16
21:07:25 2011
@@ -46,15 +46,15 @@
( (lstrlenW(str) + 1) * sizeof(WCHAR) )
BOOL
-InitializeAudioDeviceListLock();
+InitializeAudioDeviceListLock(VOID);
VOID
-KillAudioDeviceListLock();
+KillAudioDeviceListLock(VOID);
VOID
-LockAudioDeviceList();
+LockAudioDeviceList(VOID);
VOID
-UnlockAudioDeviceList();
+UnlockAudioDeviceList(VOID);
#endif
Modified: trunk/reactos/include/reactos/libs/ppcmmu/mmuutil.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/reactos/libs/ppcmm…
==============================================================================
--- trunk/reactos/include/reactos/libs/ppcmmu/mmuutil.h [iso-8859-1] (original)
+++ trunk/reactos/include/reactos/libs/ppcmmu/mmuutil.h [iso-8859-1] Wed Mar 16 21:07:25
2011
@@ -1,8 +1,8 @@
#ifndef FREELDR_MMU_H
#define FREELDR_MMU_H
-int GetDEC();
-int GetMSR();
+int GetDEC(void);
+int GetMSR(void);
int GetPhys( paddr_t addr );
int GetPhysHalf( paddr_t addr );
int GetPhysByte( paddr_t addr );
@@ -13,7 +13,7 @@
void SetSR(int n, int val);
void GetBat( int bat, int inst, int *batHi, int *batLo );
void SetBat( int bat, int inst, int batHi, int batLo );
-int GetSDR1();
+int GetSDR1(void);
void SetSDR1( int newsdr );
int BatHit( int bath, int batl, int virt );
int BatTranslate( int bath, int batl, int virt );
Modified: trunk/reactos/include/reactos/libs/sound/mmebuddy.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/reactos/libs/sound…
==============================================================================
--- trunk/reactos/include/reactos/libs/sound/mmebuddy.h [iso-8859-1] (original)
+++ trunk/reactos/include/reactos/libs/sound/mmebuddy.h [iso-8859-1] Wed Mar 16 21:07:25
2011
@@ -382,10 +382,10 @@
*/
MMRESULT
-InitEntrypointMutexes();
-
-VOID
-CleanupEntrypointMutexes();
+InitEntrypointMutexes(VOID);
+
+VOID
+CleanupEntrypointMutexes(VOID);
VOID
AcquireEntrypointMutex(
@@ -502,7 +502,7 @@
IN MMDEVICE_TYPE DeviceType);
VOID
-UnlistAllSoundDevices();
+UnlistAllSoundDevices(VOID);
MMRESULT
GetSoundDevice(
@@ -608,7 +608,7 @@
IN PVOID Pointer);
UINT
-GetMemoryAllocationCount();
+GetMemoryAllocationCount(VOID);
UINT
GetDigitCount(
Modified: trunk/reactos/include/reactos/libs/sound/time.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/reactos/libs/sound…
==============================================================================
--- trunk/reactos/include/reactos/libs/sound/time.h [iso-8859-1] (original)
+++ trunk/reactos/include/reactos/libs/sound/time.h [iso-8859-1] Wed Mar 16 21:07:25 2011
@@ -16,6 +16,6 @@
SleepMs(ULONG Milliseconds);
ULONG
-QuerySystemTimeMs();
+QuerySystemTimeMs(VOID);
#endif
Modified: trunk/reactos/lib/drivers/oskittcp/include/oskittcp.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/drivers/oskittcp/inclu…
==============================================================================
--- trunk/reactos/lib/drivers/oskittcp/include/oskittcp.h [iso-8859-1] (original)
+++ trunk/reactos/lib/drivers/oskittcp/include/oskittcp.h [iso-8859-1] Wed Mar 16 21:07:25
2011
@@ -100,8 +100,8 @@
extern OSKITTCP_EVENT_HANDLERS OtcpEvent;
-extern void InitOskitTCP();
-extern void DeinitOskitTCP();
+extern void InitOskitTCP( void );
+extern void DeinitOskitTCP( void );
extern void TimerOskitTCP( int FastTimer, int SlowTimer );
extern void OskitDumpBuffer( OSK_PCHAR Data, OSK_UINT Len );
extern int OskitTCPShutdown( void *socket, int disconn_type );
Modified: trunk/reactos/lib/fslib/vfatlib/check/io.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/fslib/vfatlib/check/io…
==============================================================================
--- trunk/reactos/lib/fslib/vfatlib/check/io.h [iso-8859-1] (original)
+++ trunk/reactos/lib/fslib/vfatlib/check/io.h [iso-8859-1] Wed Mar 16 21:07:25 2011
@@ -21,7 +21,7 @@
/* Opens the file system PATH. If RW is zero, the file system is opened
read-only, otherwise, it is opened read-write. */
-BOOLEAN fs_isdirty();
+BOOLEAN fs_isdirty(void);
/* Checks if filesystem is dirty */
@@ -55,7 +55,7 @@
/* Lock or unlocks the volume */
-void fs_dismount();
+void fs_dismount(void);
/* Dismounts the volume */
Modified: trunk/reactos/lib/ppcmmu/mmuobject.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/ppcmmu/mmuobject.h?rev…
==============================================================================
--- trunk/reactos/lib/ppcmmu/mmuobject.h [iso-8859-1] (original)
+++ trunk/reactos/lib/ppcmmu/mmuobject.h [iso-8859-1] Wed Mar 16 21:07:25 2011
@@ -1,6 +1,6 @@
#pragma once
-void initme();
+void initme(void);
void mmusetramsize(paddr_t size);
int mmuaddpage(ppc_map_info_t *info, int count);
void mmudelpage(ppc_map_info_t *info, int count);
@@ -10,5 +10,5 @@
void mmuallocvsid(int vsid, int mask);
void freevsid(int);
void mmufreevsid(int vsid, int mask);
-int mmunitest();
+int mmunitest(void);
void callkernel(void *fun_ptr, void *arg);
Modified: trunk/reactos/ntoskrnl/include/internal/amd64/ke.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/include/internal/…
==============================================================================
--- trunk/reactos/ntoskrnl/include/internal/amd64/ke.h [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/include/internal/amd64/ke.h [iso-8859-1] Wed Mar 16 21:07:25
2011
@@ -226,30 +226,30 @@
FASTCALL
KiInitializeTss(IN PKTSS Tss, IN UINT64 Stack);
-VOID KiDivideErrorFault();
-VOID KiDebugTrapOrFault();
-VOID KiNmiInterrupt();
-VOID KiBreakpointTrap();
-VOID KiOverflowTrap();
-VOID KiBoundFault();
-VOID KiInvalidOpcodeFault();
-VOID KiNpxNotAvailableFault();
-VOID KiDoubleFaultAbort();
-VOID KiNpxSegmentOverrunAbort();
-VOID KiInvalidTssFault();
-VOID KiSegmentNotPresentFault();
-VOID KiStackFault();
-VOID KiGeneralProtectionFault();
-VOID KiPageFault();
-VOID KiFloatingErrorFault();
-VOID KiAlignmentFault();
-VOID KiMcheckAbort();
-VOID KiXmmException();
-VOID KiApcInterrupt();
-VOID KiRaiseAssertion();
-VOID KiDebugServiceTrap();
-VOID KiDpcInterrupt();
-VOID KiIpiInterrupt();
+VOID KiDivideErrorFault(VOID);
+VOID KiDebugTrapOrFault(VOID);
+VOID KiNmiInterrupt(VOID);
+VOID KiBreakpointTrap(VOID);
+VOID KiOverflowTrap(VOID);
+VOID KiBoundFault(VOID);
+VOID KiInvalidOpcodeFault(VOID);
+VOID KiNpxNotAvailableFault(VOID);
+VOID KiDoubleFaultAbort(VOID);
+VOID KiNpxSegmentOverrunAbort(VOID);
+VOID KiInvalidTssFault(VOID);
+VOID KiSegmentNotPresentFault(VOID);
+VOID KiStackFault(VOID);
+VOID KiGeneralProtectionFault(VOID);
+VOID KiPageFault(VOID);
+VOID KiFloatingErrorFault(VOID);
+VOID KiAlignmentFault(VOID);
+VOID KiMcheckAbort(VOID);
+VOID KiXmmException(VOID);
+VOID KiApcInterrupt(VOID);
+VOID KiRaiseAssertion(VOID);
+VOID KiDebugServiceTrap(VOID);
+VOID KiDpcInterrupt(VOID);
+VOID KiIpiInterrupt(VOID);
VOID
KiGdtPrepareForApplicationProcessorInit(ULONG Id);
@@ -284,7 +284,7 @@
VOID
NTAPI
-KiInitializeCpuFeatures();
+KiInitializeCpuFeatures(VOID);
ULONG KeAllocateGdtSelector(ULONG Desc[2]);
VOID KeFreeGdtSelector(ULONG Entry);
Modified: trunk/reactos/ntoskrnl/include/internal/kd.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/include/internal/…
==============================================================================
--- trunk/reactos/ntoskrnl/include/internal/kd.h [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/include/internal/kd.h [iso-8859-1] Wed Mar 16 21:07:25 2011
@@ -245,7 +245,7 @@
VOID
NTAPI
-KdpEnableSafeMem();
+KdpEnableSafeMem(VOID);
/* KD GLOBALS ***************************************************************/
Modified: trunk/reactos/ntoskrnl/kdbg/kdb.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/kdbg/kdb.h?rev=51…
==============================================================================
--- trunk/reactos/ntoskrnl/kdbg/kdb.h [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/kdbg/kdb.h [iso-8859-1] Wed Mar 16 21:07:25 2011
@@ -96,7 +96,7 @@
extern PCHAR KdbInitFileBuffer;
VOID
-KdbpCliInit();
+KdbpCliInit(VOID);
VOID
KdbpCliMainLoop(
@@ -107,7 +107,7 @@
IN PUNICODE_STRING Name);
VOID
-KdbpCliInterpretInitFile();
+KdbpCliInterpretInitFile(VOID);
VOID
KdbpPrint(
@@ -260,6 +260,6 @@
VOID
DbgDisableFile(PCH Filename);
VOID
-KbdDisableMouse();
-VOID
-KbdEnableMouse();
+KbdDisableMouse(VOID);
+VOID
+KbdEnableMouse(VOID);
Modified: trunk/reactos/subsystems/win32/win32k/include/callback.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/in…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/include/callback.h [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/include/callback.h [iso-8859-1] Wed Mar 16
21:07:25 2011
@@ -20,7 +20,7 @@
HMENU APIENTRY
-co_IntLoadSysMenuTemplate();
+co_IntLoadSysMenuTemplate(VOID);
BOOL APIENTRY
co_IntLoadDefaultCursors(VOID);
Modified: trunk/reactos/subsystems/win32/win32k/include/cursoricon.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/in…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/include/cursoricon.h [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/include/cursoricon.h [iso-8859-1] Wed Mar 16
21:07:25 2011
@@ -61,8 +61,8 @@
BOOL ScreenSaverRunning;
} SYSTEM_CURSORINFO, *PSYSTEM_CURSORINFO;
-BOOL InitCursorImpl();
-PCURICON_OBJECT IntCreateCurIconHandle();
+BOOL InitCursorImpl(VOID);
+PCURICON_OBJECT IntCreateCurIconHandle(VOID);
VOID FASTCALL IntCleanupCurIcons(struct _EPROCESS *Process, PPROCESSINFO Win32Process);
BOOL UserDrawIconEx(HDC hDc, INT xLeft, INT yTop, PCURICON_OBJECT pIcon, INT cxWidth,
@@ -73,7 +73,7 @@
int UserShowCursor(BOOL bShow);
-PSYSTEM_CURSORINFO IntGetSysCursorInfo();
+PSYSTEM_CURSORINFO IntGetSysCursorInfo(VOID);
#define IntReleaseCurIconObject(CurIconObj) \
UserDereferenceObject(CurIconObj)
Modified: trunk/reactos/subsystems/win32/win32k/include/dc.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/in…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/include/dc.h [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/include/dc.h [iso-8859-1] Wed Mar 16 21:07:25
2011
@@ -156,9 +156,9 @@
extern PDC defaultDCstate;
-INIT_FUNCTION NTSTATUS NTAPI InitDcImpl();
+INIT_FUNCTION NTSTATUS NTAPI InitDcImpl(VOID);
PPDEVOBJ FASTCALL IntEnumHDev(VOID);
-PDC NTAPI DC_AllocDcWithHandle();
+PDC NTAPI DC_AllocDcWithHandle(VOID);
VOID FASTCALL DC_InitDC(HDC DCToInit);
VOID FASTCALL DC_AllocateDcAttr(HDC);
VOID FASTCALL DC_FreeDcAttr(HDC);
Modified: trunk/reactos/subsystems/win32/win32k/include/device.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/in…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/include/device.h [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/include/device.h [iso-8859-1] Wed Mar 16
21:07:25 2011
@@ -33,7 +33,7 @@
INIT_FUNCTION
NTSTATUS
NTAPI
-InitDeviceImpl();
+InitDeviceImpl(VOID);
BOOL
FASTCALL
Modified: trunk/reactos/subsystems/win32/win32k/include/gdidebug.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/in…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/include/gdidebug.h [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/include/gdidebug.h [iso-8859-1] Wed Mar 16
21:07:25 2011
@@ -19,8 +19,8 @@
void IntDumpHandleTable(PGDI_HANDLE_TABLE HandleTable);
ULONG CaptureStackBackTace(PVOID* pFrames, ULONG nFramesToCapture);
-BOOL GdiDbgHTIntegrityCheck();
-void GdiDbgDumpLockedHandles();
+BOOL GdiDbgHTIntegrityCheck(VOID);
+void GdiDbgDumpLockedHandles(VOID);
#define DBGENABLE(ch) gulDebugChannels |= (ch);
#define DBGDISABLE(ch) gulDebugChannels &= ~(ch);
Modified: trunk/reactos/subsystems/win32/win32k/include/gdiobj.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/in…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/include/gdiobj.h [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/include/gdiobj.h [iso-8859-1] Wed Mar 16
21:07:25 2011
@@ -83,7 +83,7 @@
INIT_FUNCTION
NTSTATUS
NTAPI
-InitGdiHandleTable();
+InitGdiHandleTable(VOID);
#define GDIOBJ_GetObjectType(Handle) \
GDI_HANDLE_GET_TYPE(Handle)
Modified: trunk/reactos/subsystems/win32/win32k/include/input.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/in…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/include/input.h [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/include/input.h [iso-8859-1] Wed Mar 16 21:07:25
2011
@@ -45,7 +45,7 @@
BOOL FASTCALL IntMouseInput(MOUSEINPUT *mi);
BOOL FASTCALL IntKeyboardInput(KEYBDINPUT *ki);
-BOOL UserInitDefaultKeyboardLayout();
+BOOL UserInitDefaultKeyboardLayout(VOID);
PKBL UserHklToKbl(HKL hKl);
BOOL FASTCALL UserAttachThreadInput(PTHREADINFO,PTHREADINFO,BOOL);
BOOL FASTCALL IntConnectThreadInput(PTHREADINFO,PTHREADINFO*,PUSER_MESSAGE_QUEUE*);
Modified: trunk/reactos/subsystems/win32/win32k/include/ldevobj.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/in…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/include/ldevobj.h [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/include/ldevobj.h [iso-8859-1] Wed Mar 16
21:07:25 2011
@@ -66,7 +66,7 @@
INIT_FUNCTION
NTSTATUS
NTAPI
-InitLDEVImpl();
+InitLDEVImpl(VOID);
PLDEVOBJ
APIENTRY
Modified: trunk/reactos/subsystems/win32/win32k/include/monitor.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/in…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/include/monitor.h [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/include/monitor.h [iso-8859-1] Wed Mar 16
21:07:25 2011
@@ -35,8 +35,8 @@
INIT_FUNCTION
NTSTATUS
NTAPI
-InitMonitorImpl();
-NTSTATUS CleanupMonitorImpl();
+InitMonitorImpl(VOID);
+NTSTATUS CleanupMonitorImpl(VOID);
NTSTATUS IntAttachMonitor(PDEVOBJ *pGdiDevice, ULONG DisplayNumber);
NTSTATUS IntDetachMonitor(PDEVOBJ *pGdiDevice);
Modified: trunk/reactos/subsystems/win32/win32k/include/msgqueue.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/in…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/include/msgqueue.h [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/include/msgqueue.h [iso-8859-1] Wed Mar 16
21:07:25 2011
@@ -227,8 +227,8 @@
__inline BOOL MsqIsSignaled( PUSER_MESSAGE_QUEUE queue );
__inline VOID MsqSetQueueBits( PUSER_MESSAGE_QUEUE queue, WORD bits );
-BOOL APIENTRY IntInitMessagePumpHook();
-BOOL APIENTRY IntUninitMessagePumpHook();
+BOOL APIENTRY IntInitMessagePumpHook(VOID);
+BOOL APIENTRY IntUninitMessagePumpHook(VOID);
#define MAKE_LONG(x, y) ((((y) & 0xFFFF) << 16) | ((x) & 0xFFFF))
LPARAM FASTCALL MsqSetMessageExtraInfo(LPARAM lParam);
Modified: trunk/reactos/subsystems/win32/win32k/include/palette.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/in…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/include/palette.h [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/include/palette.h [iso-8859-1] Wed Mar 16
21:07:25 2011
@@ -74,7 +74,7 @@
GDIOBJ_ShareUnlockObjByPtr(&ppal->BaseObject)
BOOL INTERNAL_CALL PALETTE_Cleanup(PVOID ObjectBody);
-INIT_FUNCTION NTSTATUS NTAPI InitPaletteImpl();
+INIT_FUNCTION NTSTATUS NTAPI InitPaletteImpl(VOID);
VOID FASTCALL PALETTE_ValidateFlags (PALETTEENTRY* lpPalE, INT size);
INT FASTCALL PALETTE_ToPhysical (PDC dc, COLORREF color);
Modified: trunk/reactos/subsystems/win32/win32k/include/pdevobj.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/in…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/include/pdevobj.h [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/include/pdevobj.h [iso-8859-1] Wed Mar 16
21:07:25 2011
@@ -177,7 +177,7 @@
INIT_FUNCTION
NTSTATUS
NTAPI
-InitPDEVImpl();
+InitPDEVImpl(VOID);
PSIZEL
FASTCALL