Linked regedit against msvcrt instead of the platform I/O library, so
it can handle full Windows paths.
This commit is contained in:
parent
befbb0e441
commit
fe61065cd7
|
@ -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>
|
||||
|
@ -1574,4 +1571,3 @@ CHAR *getAppName()
|
|||
{
|
||||
return app_name;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue