Add NTOS compatibility driver

This commit is contained in:
2024-02-07 17:48:33 +01:00
parent ba0b4c339d
commit 86dcf317ab
5 changed files with 50 additions and 0 deletions

17
drivers/ntosdrv/ntosdrv.c Normal file
View File

@@ -0,0 +1,17 @@
/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: drivers/ntosdrv/ntosdrv.c
* DESCRIPTION: NTOS compatibility driver
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#include <xtkmapi.h>
XTAPI
XTSTATUS
XtDriverEntry()
{
/* Return success */
return STATUS_SUCCESS;
}