27 lines
		
	
	
		
			508 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			508 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/**
 | 
						|
 * 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;
 | 
						|
}
 |