mirror of
https://github.com/reactos/reactos.git
synced 2025-05-17 16:27:00 +00:00
adding dxgthk.sys stub we need it for dxg.sys
svn path=/branches/reactx/; revision=29795
This commit is contained in:
parent
5697e7c2d2
commit
115c413a45
4 changed files with 43 additions and 0 deletions
7
reactos/drivers/directx/dxgthk/dxg.def
Normal file
7
reactos/drivers/directx/dxgthk/dxg.def
Normal 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
|
||||
|
10
reactos/drivers/directx/dxgthk/dxgthk.rbuild
Normal file
10
reactos/drivers/directx/dxgthk/dxgthk.rbuild
Normal 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>
|
7
reactos/drivers/directx/dxgthk/dxgthk.rc
Normal file
7
reactos/drivers/directx/dxgthk/dxgthk.rc
Normal 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>
|
19
reactos/drivers/directx/dxgthk/main.c
Normal file
19
reactos/drivers/directx/dxgthk/main.c
Normal 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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in a new issue