mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 20:32:36 +00:00
27 lines
605 B
C
27 lines
605 B
C
|
|
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS kernel
|
|
* PURPOSE: Native driver for dxg implementation
|
|
* FILE: win32ss/reactx/dxgthk/main.c
|
|
* PROGRAMER: Magnus olsen (magnus@greatlord.com)
|
|
* REVISION HISTORY:
|
|
* 15/10-2007 Magnus Olsen
|
|
*/
|
|
|
|
/* DDK/NDK/SDK Headers */
|
|
#include <ddk/ntddk.h>
|
|
|
|
NTSTATUS NTAPI
|
|
DriverEntry(IN PVOID Context1,
|
|
IN PVOID Context2)
|
|
{
|
|
/*
|
|
* NOTE this driver will never be load, it only contain export list
|
|
* to win32k eng functions
|
|
*/
|
|
return STATUS_SUCCESS;
|
|
}
|
|
|
|
|