fort/src/driver/fortdrv.h
2020-09-19 17:54:44 +03:00

18 lines
425 B
C

#ifndef FORTDRV_H
#define FORTDRV_H
#include "common/common.h"
/* WDM for Development in User Mode */
#if !defined(FORT_DRIVER)
# include "wdm/um_wdm.h"
# include "wdm/um_ndis.h"
# include "wdm/um_fwpsk.h"
# include "wdm/um_fwpmk.h"
#endif
#define fort_mem_alloc(size, tag) ExAllocatePoolWithTag(NonPagedPool, (size), (tag))
#define fort_mem_free(p, tag) ExFreePoolWithTag((p), (tag))
#endif // FORTDRV_H