Commit fe61065c authored by Andriy Palamarchuk's avatar Andriy Palamarchuk Committed by Alexandre Julliard

Linked regedit against msvcrt instead of the platform I/O library, so

it can handle full Windows paths.
parent befbb0e4
......@@ -4,7 +4,8 @@ SRCDIR = @srcdir@
VPATH = @srcdir@
MODULE = regedit.exe
APPMODE = gui
IMPORTS = advapi32 kernel32
IMPORTS = msvcrt advapi32 kernel32
EXTRAINCL = -I$(TOPSRCDIR)/include/msvcrt
C_SRCS = \
regedit.c \
......
......@@ -20,9 +20,6 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "wine/port.h"
#include <limits.h>
#include <stdio.h>
#include <windows.h>
......@@ -1283,7 +1280,7 @@ void export_hkey(FILE *file, HKEY key,
CHAR buf[20];
int cur_pos;
if (value_type == REG_BINARY)
if (value_type == REG_BINARY)
{
hex_prefix = "hex:";
} else {
......@@ -1574,4 +1571,3 @@ CHAR *getAppName()
{
return app_name;
}
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