mirror of
https://github.com/tnodir/fort
synced 2024-11-15 13:46:48 +00:00
18 lines
425 B
C
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
|