Use new names for w32 files

This commit is contained in:
Geoff Voelker 1996-11-19 07:04:49 +00:00
parent a0d143459c
commit 489f937121
10 changed files with 114 additions and 114 deletions

View file

@ -114,15 +114,15 @@
(garbage-collect)
(load "disp-table") ; needed to setup ibm-pc char set, see internal.el
(garbage-collect)
(load "dos-nt")
(load "dos-w32")
(garbage-collect)
(load "winnt")
(load "w32-fns")
(garbage-collect)))
(if (eq system-type 'ms-dos)
(progn
(load "ls-lisp")
(garbage-collect)
(load "dos-nt")
(load "dos-w32")
(garbage-collect)
(load "dos-fns")
(garbage-collect)

View file

@ -599,14 +599,14 @@ otherobj= $(termcapobj) lastfile.o $(mallocobj) $(allocaobj) $(widgetobj)
#ifdef MSDOS
#define MSDOS_SUPPORT ${lispsource}ls-lisp.elc ${lispsource}disp-table.elc \
${lispsource}dos-fns.elc ${lispsource}dos-nt.elc
${lispsource}dos-fns.elc ${lispsource}dos-w32.elc
#else
#define MSDOS_SUPPORT
#endif
#ifdef WINDOWSNT
#define WINNT_SUPPORT ${lispsource}ls-lisp.elc ${lispsource}winnt.elc \
${lispsource}dos-nt.elc
#define WINNT_SUPPORT ${lispsource}ls-lisp.elc ${lispsource}w32-fns.elc \
${lispsource}dos-w32.elc
#else
#define WINNT_SUPPORT
#endif
@ -702,7 +702,7 @@ SOME_MACHINE_LISP = ${dotdot}/lisp/faces.elc ${dotdot}/lisp/facemenu.elc \
${dotdot}/lisp/select.elc ${dotdot}/lisp/scroll-bar.elc \
${dotdot}/lisp/vmsproc.elc ${dotdot}/lisp/vms-patch.elc \
${dotdot}/lisp/ls-lisp.elc ${dotdot}/lisp/dos-fns.elc \
${dotdot}/lisp/winnt.elc ${dotdot}/lisp/dos-nt.elc
${dotdot}/lisp/w32-fns.elc ${dotdot}/lisp/dos-w32.elc
/* Construct full set of libraries to be linked.
Note that SunOS needs -lm to come before -lc; otherwise, you get

View file

@ -47,7 +47,7 @@ extern char *strerror ();
#include <windows.h>
#include <stdlib.h> /* for proper declaration of environ */
#include <fcntl.h>
#include "nt.h"
#include "w32.h"
#define _P_NOWAIT 1 /* from process.h */
#endif

View file

@ -51,7 +51,7 @@ TRES = $(BLD)\emacs.rbj
!endif
TLASTLIB = $(BLD)\lastfile.lib
# see comments in allocate_heap in ntheap.c before changing any of the
# see comments in allocate_heap in w32heap.c before changing any of the
# -stack, -heap, or -base settings.
LINK_FLAGS = $(ARCH_LDFLAGS) -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -debug:full -debugtype:cv -machine:$(ARCH) -subsystem:$(SUBSYSTEM) -entry:_start -map:$(BLD)\temacs.map
@ -90,11 +90,11 @@ OBJ1 = $(BLD)\abbrev.obj \
$(BLD)\minibuf.obj \
$(BLD)\mocklisp.obj
OBJ2 = $(BLD)\nt.obj \
$(BLD)\ntheap.obj \
$(BLD)\ntinevt.obj \
$(BLD)\ntproc.obj \
$(BLD)\ntterm.obj \
OBJ2 = $(BLD)\w32.obj \
$(BLD)\w32heap.obj \
$(BLD)\w32inevt.obj \
$(BLD)\w32proc.obj \
$(BLD)\w32console.obj \
$(BLD)\print.obj \
$(BLD)\process.obj \
$(BLD)\regex.obj \
@ -106,7 +106,7 @@ OBJ2 = $(BLD)\nt.obj \
$(BLD)\termcap.obj \
$(BLD)\tparam.obj \
$(BLD)\undo.obj \
$(BLD)\unexnt.obj \
$(BLD)\unexw32.obj \
$(BLD)\window.obj \
$(BLD)\xdisp.obj \
$(BLD)\casetab.obj \
@ -239,7 +239,7 @@ clean:; - $(DEL) *~ *.pdb config.h paths.h
# this target is mostly used for debugging.
#
cleandump:; cd $(BLD)
- $(DEL) callproc.obj data.obj dispnew.obj doc.obj editfns.obj emacs.obj lread.obj process.obj sysdep.obj term.obj ntheap.obj unexnt.obj
- $(DEL) callproc.obj data.obj dispnew.obj doc.obj editfns.obj emacs.obj lread.obj process.obj sysdep.obj term.obj w32heap.obj unexw32.obj
cd ..\..
@ -250,7 +250,7 @@ SRC = .
$(BLD)\abbrev.obj : \
$(SRC)\abbrev.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -260,7 +260,7 @@ $(BLD)\abbrev.obj : \
$(BLD)\alloc.obj : \
$(SRC)\alloc.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -275,10 +275,10 @@ $(BLD)\alloc.obj : \
$(BLD)\alloca.obj : \
$(SRC)\alloca.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\s\windowsnt.h \
$(SRC)\s\ms-w32.h \
$(SRC)\m\intel386.h \
$(SRC)\config.h \
$(SRC)\blockinput.h
@ -286,7 +286,7 @@ $(BLD)\alloca.obj : \
$(BLD)\buffer.obj : \
$(SRC)\buffer.c \
$(EMACS_ROOT)\nt\inc\sys\param.h \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -316,7 +316,7 @@ $(BLD)\callint.obj : \
$(BLD)\callproc.obj : \
$(SRC)\callproc.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\msdos.h \
@ -332,7 +332,7 @@ $(BLD)\callproc.obj : \
$(BLD)\casefiddle.obj : \
$(SRC)\casefiddle.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -343,7 +343,7 @@ $(BLD)\casefiddle.obj : \
$(BLD)\casetab.obj : \
$(SRC)\casetab.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -351,7 +351,7 @@ $(BLD)\casetab.obj : \
$(BLD)\cm.obj : \
$(SRC)\cm.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\cm.h \
@ -359,7 +359,7 @@ $(BLD)\cm.obj : \
$(BLD)\cmds.obj : \
$(SRC)\cmds.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -369,7 +369,7 @@ $(BLD)\cmds.obj : \
$(BLD)\data.obj : \
$(SRC)\data.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -379,7 +379,7 @@ $(BLD)\data.obj : \
$(BLD)\dired.obj : \
$(SRC)\dired.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\vmsdir.h \
@ -391,7 +391,7 @@ $(BLD)\dired.obj : \
$(BLD)\dispnew.obj : \
$(SRC)\dispnew.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -417,7 +417,7 @@ $(BLD)\dispnew.obj : \
$(BLD)\doc.obj : \
$(SRC)\doc.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(EMACS_ROOT)\nt\inc\sys\file.h \
@ -427,13 +427,13 @@ $(BLD)\doc.obj : \
$(BLD)\doprnt.obj : \
$(SRC)\doprnt.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h
$(BLD)\dosfns.obj : \
$(SRC)\dosfns.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -446,7 +446,7 @@ $(BLD)\dosfns.obj : \
$(BLD)\editfns.obj : \
$(SRC)\editfns.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\uaf.h \
@ -462,7 +462,7 @@ $(BLD)\editfns.obj : \
$(BLD)\emacs.obj : \
$(SRC)\emacs.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -477,7 +477,7 @@ $(BLD)\emacs.obj : \
$(BLD)\eval.obj : \
$(SRC)\eval.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -487,7 +487,7 @@ $(BLD)\eval.obj : \
$(BLD)\fileio.obj : \
$(SRC)\fileio.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\uaf.h \
@ -507,7 +507,7 @@ $(BLD)\fileio.obj : \
$(BLD)\filelock.obj : \
$(SRC)\filelock.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\uaf.h \
@ -522,16 +522,16 @@ $(BLD)\filelock.obj : \
$(BLD)\filemode.obj : \
$(SRC)\filemode.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\s\windowsnt.h \
$(SRC)\s\ms-w32.h \
$(SRC)\m\intel386.h \
$(SRC)\config.h
$(BLD)\floatfns.obj : \
$(SRC)\floatfns.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -539,7 +539,7 @@ $(BLD)\floatfns.obj : \
$(BLD)\fns.obj : \
$(SRC)\fns.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -551,7 +551,7 @@ $(BLD)\fns.obj : \
$(BLD)\frame.obj : \
$(SRC)\frame.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -565,17 +565,17 @@ $(BLD)\frame.obj : \
$(BLD)\getloadavg.obj : \
$(SRC)\getloadavg.c \
$(EMACS_ROOT)\nt\inc\sys\param.h \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\s\windowsnt.h \
$(SRC)\s\ms-w32.h \
$(SRC)\m\intel386.h \
$(SRC)\config.h \
$(EMACS_ROOT)\nt\inc\sys\file.h
$(BLD)\gmalloc.obj : \
$(SRC)\gmalloc.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(EMACS_ROOT)\nt\inc\sys\param.h \
@ -584,14 +584,14 @@ $(BLD)\gmalloc.obj : \
$(BLD)\hftctl.obj : \
$(SRC)\hftctl.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(EMACS_ROOT)\nt\inc\sys\ioctl.h
$(BLD)\indent.obj : \
$(SRC)\indent.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -608,7 +608,7 @@ $(BLD)\indent.obj : \
$(BLD)\insdel.obj : \
$(SRC)\insdel.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -620,7 +620,7 @@ $(BLD)\insdel.obj : \
$(BLD)\intervals.obj : \
$(SRC)\intervals.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -632,7 +632,7 @@ $(BLD)\intervals.obj : \
$(BLD)\keyboard.obj : \
$(SRC)\keyboard.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\termchar.h \
@ -661,7 +661,7 @@ $(BLD)\keyboard.obj : \
$(BLD)\keymap.obj : \
$(SRC)\keymap.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -676,7 +676,7 @@ $(BLD)\lastfile.obj : \
$(BLD)\lread.obj : \
$(SRC)\lread.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(EMACS_ROOT)\nt\inc\sys\file.h \
@ -690,7 +690,7 @@ $(BLD)\lread.obj : \
$(BLD)\macros.obj : \
$(SRC)\macros.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -701,7 +701,7 @@ $(BLD)\macros.obj : \
$(BLD)\marker.obj : \
$(SRC)\marker.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -709,7 +709,7 @@ $(BLD)\marker.obj : \
$(BLD)\minibuf.obj : \
$(SRC)\minibuf.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -722,29 +722,29 @@ $(BLD)\minibuf.obj : \
$(BLD)\mocklisp.obj : \
$(SRC)\mocklisp.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
$(SRC)\buffer.h
$(BLD)\nt.obj : \
$(SRC)\nt.c \
$(SRC)\nt.h \
$(SRC)\s\windowsnt.h \
$(BLD)\w32.obj : \
$(SRC)\w32.c \
$(SRC)\w32.h \
$(SRC)\s\ms-w32.h \
$(SRC)\m\intel386.h \
$(SRC)\config.h \
$(SRC)\lisp.h \
$(EMACS_ROOT)\nt\inc\pwd.h \
$(SRC)\ntheap.h
$(SRC)\w32heap.h
$(BLD)\ntheap.obj : \
$(SRC)\ntheap.c \
$(SRC)\ntheap.h
$(BLD)\w32heap.obj : \
$(SRC)\w32heap.c \
$(SRC)\w32heap.h
$(BLD)\ntinevt.obj : \
$(SRC)\ntinevt.c \
$(SRC)\s\windowsnt.h \
$(BLD)\w32inevt.obj : \
$(SRC)\w32inevt.c \
$(SRC)\s\ms-w32.h \
$(SRC)\m\intel386.h \
$(SRC)\config.h \
$(SRC)\lisp.h \
@ -752,33 +752,33 @@ $(BLD)\ntinevt.obj : \
$(SRC)\blockinput.h \
$(SRC)\termhooks.h
$(BLD)\ntproc.obj : \
$(SRC)\ntproc.c \
$(SRC)\s\windowsnt.h \
$(BLD)\w32proc.obj : \
$(SRC)\w32proc.c \
$(SRC)\s\ms-w32.h \
$(SRC)\m\intel386.h \
$(SRC)\config.h \
$(SRC)\lisp.h \
$(SRC)\nt.h \
$(SRC)\w32.h \
$(SRC)\vmstime.h \
$(SRC)\systime.h
$(BLD)\ntterm.obj : \
$(SRC)\ntterm.c \
$(SRC)\s\windowsnt.h \
$(BLD)\w32console.obj : \
$(SRC)\w32console.c \
$(SRC)\s\ms-w32.h \
$(SRC)\m\intel386.h \
$(SRC)\config.h \
$(SRC)\lisp.h \
$(SRC)\frame.h \
$(SRC)\disptab.h \
$(SRC)\termhooks.h \
$(SRC)\ntinevt.h
$(SRC)\w32inevt.h
$(BLD)\prefix-args.obj : \
$(SRC)\prefix-args.c
$(BLD)\print.obj : \
$(SRC)\print.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -792,7 +792,7 @@ $(BLD)\print.obj : \
$(BLD)\process.obj : \
$(SRC)\process.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(EMACS_ROOT)\nt\inc\sys\ioctl.h \
@ -814,11 +814,11 @@ $(BLD)\process.obj : \
$(BLD)\ralloc.obj : \
$(SRC)\ralloc.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
$(SRC)\s\windowsnt.h \
$(SRC)\s\ms-w32.h \
$(SRC)\m\intel386.h \
$(SRC)\config.h \
$(EMACS_ROOT)\nt\inc\sys\param.h \
@ -826,10 +826,10 @@ $(BLD)\ralloc.obj : \
$(BLD)\regex.obj : \
$(SRC)\regex.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\s\windowsnt.h \
$(SRC)\s\ms-w32.h \
$(SRC)\m\intel386.h \
$(SRC)\config.h \
$(SRC)\lisp.h \
@ -839,7 +839,7 @@ $(BLD)\regex.obj : \
$(BLD)\region-cache.obj : \
$(SRC)\region-cache.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -848,7 +848,7 @@ $(BLD)\region-cache.obj : \
$(BLD)\scroll.obj : \
$(SRC)\scroll.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\termchar.h \
@ -858,7 +858,7 @@ $(BLD)\scroll.obj : \
$(BLD)\search.obj : \
$(SRC)\search.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -871,14 +871,14 @@ $(BLD)\search.obj : \
$(BLD)\strftime.obj : \
$(SRC)\strftime.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h
$(CC) $(CFLAGS) -Dstrftime=emacs_strftime -Fo$@ strftime.c
$(BLD)\sunfns.obj : \
$(SRC)\sunfns.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -888,7 +888,7 @@ $(BLD)\sunfns.obj : \
$(BLD)\syntax.obj : \
$(SRC)\syntax.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -898,7 +898,7 @@ $(BLD)\syntax.obj : \
$(BLD)\sysdep.obj : \
$(SRC)\sysdep.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -931,7 +931,7 @@ $(BLD)\sysdep.obj : \
$(BLD)\term.obj : \
$(SRC)\term.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\termchar.h \
@ -945,7 +945,7 @@ $(BLD)\term.obj : \
$(BLD)\termcap.obj : \
$(SRC)\termcap.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(EMACS_ROOT)\nt\inc\sys\file.h
@ -955,7 +955,7 @@ $(BLD)\terminfo.obj : \
$(BLD)\textprop.obj : \
$(SRC)\textprop.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -966,33 +966,33 @@ $(BLD)\textprop.obj : \
$(BLD)\tparam.obj : \
$(SRC)\tparam.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h
$(BLD)\undo.obj : \
$(SRC)\undo.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
$(SRC)\buffer.h \
$(SRC)\commands.h
$(BLD)\unexnt.obj : \
$(SRC)\unexnt.c \
$(SRC)\ntheap.h
$(BLD)\unexw32.obj : \
$(SRC)\unexw32.c \
$(SRC)\w32heap.h
$(BLD)\vm-limit.obj : \
$(SRC)\vm-limit.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\mem-limits.h
$(BLD)\widget.obj : \
$(SRC)\widget.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -1004,7 +1004,7 @@ $(BLD)\widget.obj : \
$(BLD)\window.obj : \
$(SRC)\window.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -1019,7 +1019,7 @@ $(BLD)\window.obj : \
$(BLD)\xdisp.obj : \
$(SRC)\xdisp.c \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\lisp.h \
@ -1036,7 +1036,7 @@ $(BLD)\xdisp.obj : \
$(SRC)\intervals.h
$(BLD)\w32faces.obj: \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\w32faces.c \
@ -1051,7 +1051,7 @@ $(BLD)\w32faces.obj: \
$(SRC)\intervals.h
$(BLD)\w32fns.obj: \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\w32fns.c \
@ -1065,11 +1065,11 @@ $(BLD)\w32fns.obj: \
$(SRC)\keyboard.h \
$(SRC)\blockinput.h \
$(SRC)\paths.h \
$(SRC)\ntheap.h \
$(SRC)\w32heap.h \
$(SRC)\termhooks.h
$(BLD)\w32menu.obj: \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\w32menu.c \
@ -1082,7 +1082,7 @@ $(BLD)\w32menu.obj: \
$(SRC)\buffer.h
$(BLD)\w32term.obj: \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\w32term.c \
@ -1105,7 +1105,7 @@ $(BLD)\w32term.obj: \
$(SRC)\intervals.h
$(BLD)\w32select.obj: \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\w32select.c \
@ -1117,7 +1117,7 @@ $(BLD)\w32select.obj: \
$(SRC)\blockinput.h
$(BLD)\w32reg.obj: \
$(EMACS_ROOT)\src\s\windowsnt.h \
$(EMACS_ROOT)\src\s\ms-w32.h \
$(EMACS_ROOT)\src\m\intel386.h \
$(EMACS_ROOT)\src\config.h \
$(SRC)\w32reg.c \

View file

@ -28,7 +28,7 @@ Boston, MA 02111-1307, USA.
extern BOOL ctrl_c_handler (unsigned long type);
#include "ntheap.h"
#include "w32heap.h"
/* A convenient type for keeping all the info about a mapped file together. */
typedef struct file_data {

View file

@ -75,9 +75,9 @@ Boston, MA 02111-1307, USA.
#undef getservbyname
#endif
#include "nt.h"
#include "w32.h"
#include "ndir.h"
#include "ntheap.h"
#include "w32heap.h"
/* Get the current working directory. */
char *

View file

@ -34,7 +34,7 @@ Boston, MA 02111-1307, USA.
#include "disptab.h"
#include "termhooks.h"
#include "ntinevt.h"
#include "w32inevt.h"
/* from window.c */
extern Lisp_Object Frecenter ();

View file

@ -33,7 +33,7 @@ Boston, MA 02111-1307, USA. */
#include "keyboard.h"
#include "blockinput.h"
#include "paths.h"
#include "ntheap.h"
#include "w32heap.h"
#include "termhooks.h"
#include <commdlg.h>

View file

@ -26,7 +26,7 @@ Boston, MA 02111-1307, USA.
#include <stdlib.h>
#include <stdio.h>
#include "ntheap.h"
#include "w32heap.h"
#include "lisp.h" /* for VALMASK */
/* This gives us the page size and the size of the allocation unit on NT. */

View file

@ -40,7 +40,7 @@ Boston, MA 02111-1307, USA.
#include <windows.h>
#include "lisp.h"
#include "nt.h"
#include "w32.h"
#include "systime.h"
#include "syswait.h"
#include "process.h"