Migrate NTOSDRV to C++
This commit is contained in:
26
drivers/ntosdrv/ntosdrv.cc
Normal file
26
drivers/ntosdrv/ntosdrv.cc
Normal file
@@ -0,0 +1,26 @@
|
||||
/**
|
||||
* PROJECT: ExectOS
|
||||
* COPYRIGHT: See COPYING.md in the top level directory
|
||||
* FILE: drivers/ntosdrv/ntosdrv.cc
|
||||
* DESCRIPTION: NTOS compatibility driver
|
||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||
*/
|
||||
|
||||
#include <xtkmapi.h>
|
||||
|
||||
|
||||
/**
|
||||
* This routine is the entry point of the driver.
|
||||
*
|
||||
* @return This routine returns a status code.
|
||||
*
|
||||
* @since XT 1.0
|
||||
*/
|
||||
XTCLINK
|
||||
XTAPI
|
||||
XTSTATUS
|
||||
XtDriverEntry(VOID)
|
||||
{
|
||||
/* Return success */
|
||||
return STATUS_SUCCESS;
|
||||
}
|
Reference in New Issue
Block a user