regedit: Make output_writeconsole() static.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Francois Gouget 2017-01-07 14:38:15 +01:00 committed by Alexandre Julliard
parent 49d42619fe
commit 49c30d4b8e
2 changed files with 1 additions and 2 deletions

View File

@ -28,7 +28,7 @@
WINE_DEFAULT_DEBUG_CHANNEL(regedit);
void output_writeconsole(const WCHAR *str, DWORD wlen)
static void output_writeconsole(const WCHAR *str, DWORD wlen)
{
DWORD count, ret;

View File

@ -24,7 +24,6 @@
#define REG_FORMAT_5 1
#define REG_FORMAT_4 2
void output_writeconsole(const WCHAR *str, DWORD wlen);
void __cdecl output_message(unsigned int id, ...);
BOOL export_registry_key(WCHAR *file_name, WCHAR *reg_key_name, DWORD format);