-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0x9dec1980
committed
Sep 30, 2016
1 parent
8b666b1
commit 9a79f08
Showing
54 changed files
with
11,219 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
DIRS= \ | ||
drv \ | ||
svc \ | ||
install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.