summaryrefslogtreecommitdiffstats
path: root/private/nw/rdr/kdext/ntsd
diff options
context:
space:
mode:
authorAdam <you@example.com>2020-05-17 05:51:50 +0200
committerAdam <you@example.com>2020-05-17 05:51:50 +0200
commite611b132f9b8abe35b362e5870b74bce94a1e58e (patch)
treea5781d2ec0e085eeca33cf350cf878f2efea6fe5 /private/nw/rdr/kdext/ntsd
downloadNT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.gz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.bz2
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.lz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.xz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.zst
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.zip
Diffstat (limited to 'private/nw/rdr/kdext/ntsd')
-rw-r--r--private/nw/rdr/kdext/ntsd/makefile6
-rw-r--r--private/nw/rdr/kdext/ntsd/nw.def15
-rw-r--r--private/nw/rdr/kdext/ntsd/nw.rc12
-rw-r--r--private/nw/rdr/kdext/ntsd/sources49
4 files changed, 82 insertions, 0 deletions
diff --git a/private/nw/rdr/kdext/ntsd/makefile b/private/nw/rdr/kdext/ntsd/makefile
new file mode 100644
index 000000000..6ee4f43fa
--- /dev/null
+++ b/private/nw/rdr/kdext/ntsd/makefile
@@ -0,0 +1,6 @@
+#
+# DO NOT EDIT THIS FILE!!! Edit .\sources. if you want to add a new source
+# file to this component. This file merely indirects to the real make file
+# that is shared by all the components of NT OS/2
+#
+!INCLUDE $(NTMAKEENV)\makefile.def
diff --git a/private/nw/rdr/kdext/ntsd/nw.def b/private/nw/rdr/kdext/ntsd/nw.def
new file mode 100644
index 000000000..9d9dae6d8
--- /dev/null
+++ b/private/nw/rdr/kdext/ntsd/nw.def
@@ -0,0 +1,15 @@
+DESCRIPTION 'NT Netware Redirector KD extensions'
+
+EXPORTS
+ nwdump
+ logonlist
+ serverlist
+ trace
+ reftrace
+ traceflags
+ help
+ vcblist
+ fcblist
+ icblist
+ irplist
+ credlist
diff --git a/private/nw/rdr/kdext/ntsd/nw.rc b/private/nw/rdr/kdext/ntsd/nw.rc
new file mode 100644
index 000000000..23f42b167
--- /dev/null
+++ b/private/nw/rdr/kdext/ntsd/nw.rc
@@ -0,0 +1,12 @@
+#include <windows.h>
+
+#include <ntverp.h>
+
+#define VER_FILETYPE VFT_DLL
+#define VER_FILESUBTYPE VFT2_UNKNOWN
+#define VER_FILEDESCRIPTION_STR "NW i386 KD Debugger Extensions DLL"
+#define VER_INTERNALNAME_STR "Nw.DLL"
+#define VER_ORIGINALFILENAME_STR "Nw.DLL"
+
+#include "common.ver"
+
diff --git a/private/nw/rdr/kdext/ntsd/sources b/private/nw/rdr/kdext/ntsd/sources
new file mode 100644
index 000000000..da56f0039
--- /dev/null
+++ b/private/nw/rdr/kdext/ntsd/sources
@@ -0,0 +1,49 @@
+!IF 0
+
+Copyright (c) 1989 Microsoft Corporation
+
+Module Name:
+
+ sources.
+
+Abstract:
+
+ This file specifies the target component being built and the list of
+ sources files needed to build that component. Also specifies optional
+ compiler switches and libraries that are unique for the component being
+ built.
+
+
+Author:
+
+ Steve Wood (stevewo) 12-Apr-1990
+
+NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl
+
+!ENDIF
+
+MAJORCOMP=ntos
+MINORCOMP=rdr
+
+TARGETNAME=nw
+TARGETPATH=obj
+TARGETTYPE=DYNLINK
+TARGETLIBS= \
+ \nt\public\sdk\lib\*\kernel32.lib
+
+
+DLLBASE=0x1010000
+
+INCLUDES=..\..;..\..\..\inc;$(NTOS_ROOT)\inc;$(_NTROOT)\private\inc
+
+!IFNDEF DISABLE_NET_UNICODE
+UNICODE=1
+NET_C_DEFINES=-DUNICODE
+!ENDIF
+
+SOURCES=..\nwrdrkd.c \
+ nw.rc
+
+UMTYPE=console
+OPTIONAL_NTTEST=
+