adding dxgthk.sys stub we need it for dxg.sys

svn path=/branches/reactx/; revision=29795
This commit is contained in:
Magnus Olsen 2007-10-22 20:15:49 +00:00
parent 5697e7c2d2
commit 115c413a45
4 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,7 @@
; $Id: videoprt.def 27062 2007-06-07 21:13:06Z greatlrd $
;
; dxg.def - export definition file for ReactOS
;
EXPORTS
DriverEntry@8

View file

@ -0,0 +1,10 @@
<?xml version="1.0"?>
<!DOCTYPE module SYSTEM "../../../../tools/rbuild/project.dtd">
<module name="dxgthk" type="kernelmodedriver"
installbase="system32/drivers" installname="dxgthk.sys">
<importlibrary definition="dxgthk.def" />
<include base="dxgthk">.</include>
<define name="__USE_W32API" />
<file>main.c</file>
<file>dxgthk.rc</file>
</module>

View file

@ -0,0 +1,7 @@
/* $Id: vbemp.rc 21844 2006-05-07 19:34:23Z ion $ */
#define REACTOS_VERSION_DLL
#define REACTOS_STR_FILE_DESCRIPTION "DXG DirectX trunk Driver\0"
#define REACTOS_STR_INTERNAL_NAME "dxgthk\0"
#define REACTOS_STR_ORIGINAL_FILENAME "dxgthk\0"
#include <reactos/version.rc>

View file

@ -0,0 +1,19 @@
/*
* 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
*/
NTSTATUS
DriverEntry(IN PVOID Context1,
IN PVOID Context2)
{
return 0;
}