Mercurial > emacs
changeset 16593:4ed80eda6fac
Use new names for w32 files
author | Geoff Voelker <voelker@cs.washington.edu> |
---|---|
date | Tue, 19 Nov 1996 07:04:49 +0000 |
parents | a5e9fa379097 |
children | bc3740dfe78c |
files | lisp/loadup.el src/Makefile.in src/callproc.c src/makefile.nt src/unexw32.c src/w32.c src/w32console.c src/w32fns.c src/w32heap.c src/w32proc.c |
diffstat | 10 files changed, 114 insertions(+), 114 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/loadup.el Tue Nov 19 07:04:01 1996 +0000 +++ b/lisp/loadup.el Tue Nov 19 07:04:49 1996 +0000 @@ -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)
--- a/src/Makefile.in Tue Nov 19 07:04:01 1996 +0000 +++ b/src/Makefile.in Tue Nov 19 07:04:49 1996 +0000 @@ -599,14 +599,14 @@ #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 @@ ${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
--- a/src/callproc.c Tue Nov 19 07:04:01 1996 +0000 +++ b/src/callproc.c Tue Nov 19 07:04:49 1996 +0000 @@ -47,7 +47,7 @@ #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
--- a/src/makefile.nt Tue Nov 19 07:04:01 1996 +0000 +++ b/src/makefile.nt Tue Nov 19 07:04:49 1996 +0000 @@ -51,7 +51,7 @@ !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 @@ $(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 @@ $(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 @@ # 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 @@ $(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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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 @@ $(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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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)\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 @@ $(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 @@ $(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 @@ $(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 @@ $(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 @@ $(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 @@ $(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 \
--- a/src/unexw32.c Tue Nov 19 07:04:01 1996 +0000 +++ b/src/unexw32.c Tue Nov 19 07:04:49 1996 +0000 @@ -28,7 +28,7 @@ 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 {
--- a/src/w32.c Tue Nov 19 07:04:01 1996 +0000 +++ b/src/w32.c Tue Nov 19 07:04:49 1996 +0000 @@ -75,9 +75,9 @@ #undef getservbyname #endif -#include "nt.h" +#include "w32.h" #include "ndir.h" -#include "ntheap.h" +#include "w32heap.h" /* Get the current working directory. */ char *
--- a/src/w32console.c Tue Nov 19 07:04:01 1996 +0000 +++ b/src/w32console.c Tue Nov 19 07:04:49 1996 +0000 @@ -34,7 +34,7 @@ #include "disptab.h" #include "termhooks.h" -#include "ntinevt.h" +#include "w32inevt.h" /* from window.c */ extern Lisp_Object Frecenter ();
--- a/src/w32fns.c Tue Nov 19 07:04:01 1996 +0000 +++ b/src/w32fns.c Tue Nov 19 07:04:49 1996 +0000 @@ -33,7 +33,7 @@ #include "keyboard.h" #include "blockinput.h" #include "paths.h" -#include "ntheap.h" +#include "w32heap.h" #include "termhooks.h" #include <commdlg.h>
--- a/src/w32heap.c Tue Nov 19 07:04:01 1996 +0000 +++ b/src/w32heap.c Tue Nov 19 07:04:49 1996 +0000 @@ -26,7 +26,7 @@ #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. */