Commit f099d0b1 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

regedit: Make GetwideString() static.

parent b06b9659
......@@ -68,7 +68,7 @@ if (!(p)) \
* Allocates memory and converts input from multibyte to wide chars
* Returned string must be freed by the caller
*/
WCHAR* GetWideString(const char* strA)
static WCHAR* GetWideString(const char* strA)
{
if(strA)
{
......
......@@ -25,5 +25,4 @@
BOOL export_registry_key(WCHAR *file_name, WCHAR *reg_key_name, DWORD format);
BOOL import_registry_file(FILE *in);
void delete_registry_key(WCHAR *reg_key_name);
WCHAR* GetWideString(const char* strA);
CHAR* GetMultiByteString(const WCHAR* strW);
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