sys: create basic driver structure

This commit is contained in:
Bill Zissimopoulos
2015-11-16 15:40:31 -08:00
parent 20a5e668c6
commit 99c2a6a5e5
19 changed files with 551 additions and 4 deletions

24
src/sys/create.c Normal file
View File

@ -0,0 +1,24 @@
/**
* @file sys/create.c
*
* @copyright 2015 Bill Zissimopoulos
*/
#include <sys/driver.h>
DRIVER_DISPATCH FspCreate;
#ifdef ALLOC_PRAGMA
#pragma alloc_text(PAGE, FspCreate)
#endif
NTSTATUS
FspCreate(
_In_ PDEVICE_OBJECT DeviceObject,
_In_ PIRP Irp)
{
UNREFERENCED_PARAMETER(DeviceObject);
UNREFERENCED_PARAMETER(Irp);
return STATUS_NOT_IMPLEMENTED;
}