Skip to content

Commit

Permalink
tdifw-1.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
0x9dec1980 committed Sep 30, 2016
1 parent 8b666b1 commit 9a79f08
Show file tree
Hide file tree
Showing 54 changed files with 11,219 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tdifw-1.4.4/dirs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
DIRS= \
drv \
svc \
install
7 changes: 7 additions & 0 deletions tdifw-1.4.4/drv/MAKEFILE
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#
# 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 driver components of the Windows NT DDK
#

!INCLUDE $(NTMAKEENV)\makefile.def
39 changes: 39 additions & 0 deletions tdifw-1.4.4/drv/SOURCES
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
TARGETNAME=tdifw_drv
TARGETPATH=obj
TARGETTYPE=DRIVER

TARGETLIBS=$(DDK_LIB_PATH)\tdi.lib

C_DEFINES=-DUSE_PACKET_ENGINE
# You can specify this define too: -DUSE_TDI_HOOKING

USER_INCLUDES=..;$(NTMAKEENV)\..\src\network\inc

SOURCES= tdi_fw.c \
dispatch.c \
disp_conn.c \
disp_dg.c \
disp_ev.c \
disp_obj.c \
events.c \
ev_conn.c \
ev_dg.c \
filter.c \
memtrack.c \
obj_tbl.c \
sock.c \
ipc.c \
pid_pname.c \
packet.c \
conn_state.c \
sids.c \
disp_sr.c \
ev_recv.c

!if "$(NTDEBUG)"=="ntsdnodbg"
NTDEBUG=
!endif

!ifndef NTDEBUG
NTDEBUG=retail
!endif
Loading

0 comments on commit 9a79f08

Please sign in to comment.