From e611b132f9b8abe35b362e5870b74bce94a1e58e Mon Sep 17 00:00:00 2001 From: Adam Date: Sat, 16 May 2020 20:51:50 -0700 Subject: initial commit --- private/nw/rdr/kdext/windbg/makefile | 6 +++++ private/nw/rdr/kdext/windbg/nwdbg.def | 15 +++++++++++ private/nw/rdr/kdext/windbg/nwdbg.rc | 12 +++++++++ private/nw/rdr/kdext/windbg/sources | 51 +++++++++++++++++++++++++++++++++++ 4 files changed, 84 insertions(+) create mode 100644 private/nw/rdr/kdext/windbg/makefile create mode 100644 private/nw/rdr/kdext/windbg/nwdbg.def create mode 100644 private/nw/rdr/kdext/windbg/nwdbg.rc create mode 100644 private/nw/rdr/kdext/windbg/sources (limited to 'private/nw/rdr/kdext/windbg') diff --git a/private/nw/rdr/kdext/windbg/makefile b/private/nw/rdr/kdext/windbg/makefile new file mode 100644 index 000000000..6ee4f43fa --- /dev/null +++ b/private/nw/rdr/kdext/windbg/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/windbg/nwdbg.def b/private/nw/rdr/kdext/windbg/nwdbg.def new file mode 100644 index 000000000..ca9758039 --- /dev/null +++ b/private/nw/rdr/kdext/windbg/nwdbg.def @@ -0,0 +1,15 @@ +DESCRIPTION 'NT Netware Redirector KD extensions' + +EXPORTS + nwdump + logonlist + serverlist + trace + traceflags + help + vcblist + fcblist + icblist + irplist + credlist + reftrace diff --git a/private/nw/rdr/kdext/windbg/nwdbg.rc b/private/nw/rdr/kdext/windbg/nwdbg.rc new file mode 100644 index 000000000..5d9a5fe78 --- /dev/null +++ b/private/nw/rdr/kdext/windbg/nwdbg.rc @@ -0,0 +1,12 @@ +#include + +#include + +#define VER_FILETYPE VFT_DLL +#define VER_FILESUBTYPE VFT2_UNKNOWN +#define VER_FILEDESCRIPTION_STR "NW WinDbg Debugger Extensions DLL" +#define VER_INTERNALNAME_STR "NwDbg.DLL" +#define VER_ORIGINALFILENAME_STR "NwDbg.DLL" + +#include "common.ver" + diff --git a/private/nw/rdr/kdext/windbg/sources b/private/nw/rdr/kdext/windbg/sources new file mode 100644 index 000000000..7f3d51824 --- /dev/null +++ b/private/nw/rdr/kdext/windbg/sources @@ -0,0 +1,51 @@ +!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=nwdbg +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 + +C_DEFINES=-DWINDBG + +SOURCES=..\nwrdrkd.c \ + nwdbg.rc + +UMTYPE=console +OPTIONAL_NTTEST= + -- cgit v1.2.3