fort/src/driver/fortdrv.h

18 lines
425 B
C
Raw Normal View History

2017-08-22 12:47:33 +00:00
#ifndef FORTDRV_H
#define FORTDRV_H
2020-09-07 04:30:48 +00:00
#include "common/common.h"
2017-08-22 12:47:33 +00:00
/* 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
2020-09-07 04:30:48 +00:00
#define fort_mem_alloc(size, tag) ExAllocatePoolWithTag(NonPagedPool, (size), (tag))
#define fort_mem_free(p, tag) ExFreePoolWithTag((p), (tag))
2017-08-22 12:47:33 +00:00
2020-09-06 12:26:55 +00:00
#endif // FORTDRV_H