2007-10-22 20:15:49 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
|
|
* PROJECT: ReactOS kernel
|
|
|
|
* PURPOSE: Native driver for dxg implementation
|
|
|
|
* FILE: drivers/directx/dxg/main.c
|
|
|
|
* PROGRAMER: Magnus olsen (magnus@greatlord.com)
|
|
|
|
* REVISION HISTORY:
|
|
|
|
* 15/10-2007 Magnus Olsen
|
|
|
|
*/
|
|
|
|
|
2007-10-22 20:55:18 +00:00
|
|
|
/* DDK/NDK/SDK Headers */
|
|
|
|
#include <ddk/ntddk.h>
|
|
|
|
|
2008-08-09 09:42:43 +00:00
|
|
|
NTSTATUS NTAPI
|
2007-10-22 20:15:49 +00:00
|
|
|
DriverEntry(IN PVOID Context1,
|
|
|
|
IN PVOID Context2)
|
|
|
|
{
|
2007-10-22 20:55:18 +00:00
|
|
|
/*
|
|
|
|
* NOTE this driver will never be load, it only contain export list
|
|
|
|
* to win32k eng functions
|
|
|
|
*/
|
2007-11-04 14:57:57 +00:00
|
|
|
return STATUS_SUCCESS;
|
2007-10-22 20:15:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|