Commit 204ecdaa authored by Stefan Huehner's avatar Stefan Huehner Committed by Alexandre Julliard

Remove some more -Wstrict-prototypes warnings.

parent 46cd0432
...@@ -557,7 +557,7 @@ HKEY getRegClass(LPSTR lpClass) ...@@ -557,7 +557,7 @@ HKEY getRegClass(LPSTR lpClass)
/****************************************************************************** /******************************************************************************
* Close the currently opened key. * Close the currently opened key.
*/ */
void closeKey() void closeKey(void)
{ {
RegCloseKey(currentKeyHandle); RegCloseKey(currentKeyHandle);
......
...@@ -41,7 +41,7 @@ BOOL import_registry_file(LPTSTR filename); ...@@ -41,7 +41,7 @@ BOOL import_registry_file(LPTSTR filename);
void delete_registry_key(CHAR *reg_key_name); void delete_registry_key(CHAR *reg_key_name);
void setAppName(const CHAR *name); void setAppName(const CHAR *name);
const CHAR *getAppName(); const CHAR *getAppName(void);
void processRegLines(FILE *in, CommandAPI command); void processRegLines(FILE *in, CommandAPI command);
...@@ -59,7 +59,7 @@ HKEY getRegClass(LPSTR lpLine); ...@@ -59,7 +59,7 @@ HKEY getRegClass(LPSTR lpLine);
DWORD getDataType(LPSTR *lpValue, DWORD* parse_type); DWORD getDataType(LPSTR *lpValue, DWORD* parse_type);
LPSTR getArg(LPSTR arg); LPSTR getArg(LPSTR arg);
HRESULT openKey(LPSTR stdInput); HRESULT openKey(LPSTR stdInput);
void closeKey(); void closeKey(void);
/* /*
* api setValue prototypes * api setValue prototypes
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment