mirror of
https://github.com/reactos/reactos.git
synced 2025-07-10 08:14:19 +00:00
[BASE]
- Change () to (VOID) in function declarators. Part 3/XX. svn path=/trunk/; revision=51039
This commit is contained in:
parent
d99032f362
commit
338d63e19c
4 changed files with 17 additions and 17 deletions
|
@ -29,22 +29,22 @@ BOOL
|
||||||
CreateAudioDeviceList(DWORD max_size);
|
CreateAudioDeviceList(DWORD max_size);
|
||||||
|
|
||||||
VOID
|
VOID
|
||||||
DestroyAudioDeviceList();
|
DestroyAudioDeviceList(VOID);
|
||||||
|
|
||||||
|
|
||||||
/* Plug and Play (pnp.c) */
|
/* Plug and Play (pnp.c) */
|
||||||
|
|
||||||
BOOL
|
BOOL
|
||||||
ProcessExistingDevices();
|
ProcessExistingDevices(VOID);
|
||||||
|
|
||||||
DWORD
|
DWORD
|
||||||
ProcessDeviceArrival(DEV_BROADCAST_DEVICEINTERFACE* device);
|
ProcessDeviceArrival(DEV_BROADCAST_DEVICEINTERFACE* device);
|
||||||
|
|
||||||
BOOL
|
BOOL
|
||||||
RegisterForDeviceNotifications();
|
RegisterForDeviceNotifications(VOID);
|
||||||
|
|
||||||
VOID
|
VOID
|
||||||
UnregisterDeviceNotifications();
|
UnregisterDeviceNotifications(VOID);
|
||||||
|
|
||||||
DWORD
|
DWORD
|
||||||
HandleDeviceEvent(
|
HandleDeviceEvent(
|
||||||
|
@ -52,7 +52,7 @@ HandleDeviceEvent(
|
||||||
LPVOID lpEventData);
|
LPVOID lpEventData);
|
||||||
|
|
||||||
BOOL
|
BOOL
|
||||||
StartSystemAudioServices();
|
StartSystemAudioServices(VOID);
|
||||||
|
|
||||||
/* Debugging */
|
/* Debugging */
|
||||||
|
|
||||||
|
|
|
@ -35,8 +35,8 @@ extern volatile BOOL bShutdown;
|
||||||
extern volatile BOOL bPause;
|
extern volatile BOOL bPause;
|
||||||
|
|
||||||
/* logging functions */
|
/* logging functions */
|
||||||
BOOL InitLogging();
|
BOOL InitLogging(VOID);
|
||||||
VOID UninitLogging();
|
VOID UninitLogging(VOID);
|
||||||
VOID LogEvent(LPCWSTR lpMsg, DWORD errNum, DWORD exitCode, UINT flags);
|
VOID LogEvent(LPCWSTR lpMsg, DWORD errNum, DWORD exitCode, UINT flags);
|
||||||
|
|
||||||
/* skelserver functions */
|
/* skelserver functions */
|
||||||
|
|
|
@ -146,16 +146,16 @@ struct data15
|
||||||
};
|
};
|
||||||
|
|
||||||
//Functions
|
//Functions
|
||||||
void runProg();
|
void runProg(void);
|
||||||
void processRequest(LPVOID lpParam);
|
void processRequest(LPVOID lpParam);
|
||||||
char* myGetToken(char*, BYTE);
|
char* myGetToken(char*, BYTE);
|
||||||
void init();
|
void init(void);
|
||||||
bool cleanReq(request*);
|
bool cleanReq(request*);
|
||||||
bool getSection(const char*, char*, BYTE, char*);
|
bool getSection(const char*, char*, BYTE, char*);
|
||||||
bool isIP(char*s);
|
bool isIP(char*s);
|
||||||
char* myLower(char*);
|
char* myLower(char*);
|
||||||
char* myUpper(char*);
|
char* myUpper(char*);
|
||||||
char* IP2String(char*, DWORD);
|
char* IP2String(char*, DWORD);
|
||||||
void printWindowsError();
|
void printWindowsError(void);
|
||||||
void logMess(request*, BYTE);
|
void logMess(request*, BYTE);
|
||||||
void logMess(char*, BYTE);
|
void logMess(char*, BYTE);
|
||||||
|
|
|
@ -166,9 +166,9 @@ typedef VOID (*PCABINET_DISK_CHANGE)(PWCHAR CabinetName,
|
||||||
/* Classes */
|
/* Classes */
|
||||||
|
|
||||||
/* Default constructor */
|
/* Default constructor */
|
||||||
VOID CabinetInitialize();
|
VOID CabinetInitialize(VOID);
|
||||||
/* Default destructor */
|
/* Default destructor */
|
||||||
VOID CabinetCleanup();
|
VOID CabinetCleanup(VOID);
|
||||||
/* Returns a pointer to the filename part of a fully qualified filename */
|
/* Returns a pointer to the filename part of a fully qualified filename */
|
||||||
PWCHAR CabinetGetFileName(PWCHAR Path);
|
PWCHAR CabinetGetFileName(PWCHAR Path);
|
||||||
/* Removes a filename from a fully qualified filename */
|
/* Removes a filename from a fully qualified filename */
|
||||||
|
@ -176,19 +176,19 @@ VOID CabinetRemoveFileName(PWCHAR Path);
|
||||||
/* Normalizes a path */
|
/* Normalizes a path */
|
||||||
BOOL CabinetNormalizePath(PWCHAR Path, ULONG Length);
|
BOOL CabinetNormalizePath(PWCHAR Path, ULONG Length);
|
||||||
/* Returns name of cabinet file */
|
/* Returns name of cabinet file */
|
||||||
PWCHAR CabinetGetCabinetName();
|
PWCHAR CabinetGetCabinetName(VOID);
|
||||||
/* Sets the name of the cabinet file */
|
/* Sets the name of the cabinet file */
|
||||||
VOID CabinetSetCabinetName(PWCHAR FileName);
|
VOID CabinetSetCabinetName(PWCHAR FileName);
|
||||||
/* Sets destination path for extracted files */
|
/* Sets destination path for extracted files */
|
||||||
VOID CabinetSetDestinationPath(PWCHAR DestinationPath);
|
VOID CabinetSetDestinationPath(PWCHAR DestinationPath);
|
||||||
/* Returns destination path */
|
/* Returns destination path */
|
||||||
PWCHAR CabinetGetDestinationPath();
|
PWCHAR CabinetGetDestinationPath(VOID);
|
||||||
/* Returns zero-based current disk number */
|
/* Returns zero-based current disk number */
|
||||||
ULONG CabinetGetCurrentDiskNumber();
|
ULONG CabinetGetCurrentDiskNumber(VOID);
|
||||||
/* Opens the current cabinet file */
|
/* Opens the current cabinet file */
|
||||||
ULONG CabinetOpen();
|
ULONG CabinetOpen(VOID);
|
||||||
/* Closes the current open cabinet file */
|
/* Closes the current open cabinet file */
|
||||||
VOID CabinetClose();
|
VOID CabinetClose(VOID);
|
||||||
/* Locates the first file in the current cabinet file that matches a search criteria */
|
/* Locates the first file in the current cabinet file that matches a search criteria */
|
||||||
ULONG CabinetFindFirst(PWCHAR FileName, PCAB_SEARCH Search);
|
ULONG CabinetFindFirst(PWCHAR FileName, PCAB_SEARCH Search);
|
||||||
/* Locates the next file in the current cabinet file */
|
/* Locates the next file in the current cabinet file */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue