1 2 /* 3 * COPYRIGHT: See COPYING in the top level directory 4 * PROJECT: ReactOS kernel 5 * PURPOSE: Native driver for dxg implementation 6 * FILE: win32ss/reactx/dxgthk/main.c 7 * PROGRAMER: Magnus olsen (magnus@greatlord.com) 8 * REVISION HISTORY: 9 * 15/10-2007 Magnus Olsen 10 */ 11 12 /* DDK/NDK/SDK Headers */ 13 #include <ddk/ntddk.h> 14 15 NTSTATUS NTAPI 16 DriverEntry(IN PVOID Context1, 17 IN PVOID Context2) 18 { 19 /* 20 * NOTE this driver will never be load, it only contain export list 21 * to win32k eng functions 22 */ 23 return STATUS_SUCCESS; 24 } 25 26 27