diff --git a/reactos/drivers/directx/directory.rbuild b/reactos/drivers/directx/directory.rbuild new file mode 100644 index 00000000000..77c2850afb0 --- /dev/null +++ b/reactos/drivers/directx/directory.rbuild @@ -0,0 +1,7 @@ + + + + + + + diff --git a/reactos/drivers/directx/dxg/dxg.rbuild b/reactos/drivers/directx/dxg/dxg.rbuild new file mode 100644 index 00000000000..4880b3a5007 --- /dev/null +++ b/reactos/drivers/directx/dxg/dxg.rbuild @@ -0,0 +1,8 @@ + + + + . + + main.c + dxg.rc + diff --git a/reactos/drivers/directx/dxg/dxg.rc b/reactos/drivers/directx/dxg/dxg.rc new file mode 100644 index 00000000000..9418600f0ba --- /dev/null +++ b/reactos/drivers/directx/dxg/dxg.rc @@ -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 interface Device Driver\0" +#define REACTOS_STR_INTERNAL_NAME "dxg\0" +#define REACTOS_STR_ORIGINAL_FILENAME "dxg.sys\0" +#include diff --git a/reactos/drivers/directx/dxg/main.c b/reactos/drivers/directx/dxg/main.c new file mode 100644 index 00000000000..12e2a80ae8e --- /dev/null +++ b/reactos/drivers/directx/dxg/main.c @@ -0,0 +1,28 @@ + +/* + * 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 + */ + +#include + +NTSTATUS +GsDriverEntry(IN PVOID Context1, + IN PVOID Context2) +{ + /* NOTE : in windows it does a secure cookies check */ + return DriverEntry(Context1, Context2); +} + + +NTSTATUS +DriverEntry(IN PVOID Context1, + IN PVOID Context2) +{ + return 0; +}