www.pudn.com > xiflter_2.0.rar > MinDriver.h


/////////////////////////////////////////////////////////////////////// 
// Copyright (c) 2001-2002 
// XStudio Technology All Right Reserved. 
// Author: Tony Zhu 
// 2001-7-10 Create 
// summary: 
//			This Program to demo the Intermediate Miniport NDIS Driver. 
/////////////////////////////////////////////////////////////////////// 
 
#define DBGPRINT(Fmt)												\ 
{																	\ 
	DbgPrint("Tony debug: %s (%d)", __FILE__, __LINE__);			\ 
	DbgPrint (Fmt);													\ 
} 
 
/////////////////////////////////////////////////////////////////////// 
//Driver's Function 
/////////////////////////////////////////////////////////////////////// 
NTSTATUS 
DriverEntry( 
	IN	PDRIVER_OBJECT		DriverObject, 
	IN	PUNICODE_STRING		RegistryPath 
); 
 
VOID  
PacketUnload( 
	IN PDRIVER_OBJECT		DriverObject 
);