filterManager.h


The file filterManager.h simply defines the three functions provided in filterManager.c:

  // Copyright Ric Vieler, 2006 // Support header for filterManager.c #ifndef _FILTER_MANAGER_H_ #define _FILTER_MANAGER_H_ NTSTATUS insertFileFilter(PDRIVER_OBJECT pDriverObject,  PDEVICE_OBJECT* ppOldDevice,  PDEVICE_OBJECT* ppNewDevice,  wchar_t* deviceName); NTSTATUS insertNetworkFilter(PDRIVER_OBJECT pDriverObject,  PDEVICE_OBJECT* ppOldDevice,  PDEVICE_OBJECT* ppNewDevice,  wchar_t* deviceName); void removeFilter(PDEVICE_OBJECT* ppOldDevice,  PDEVICE_OBJECT* ppNewDevice); #endif 




Professional Rootkits
Professional Rootkits (Programmer to Programmer)
ISBN: 0470101547
EAN: 2147483647
Year: 2007
Pages: 229
Authors: Ric Vieler

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net