Author: akhaldi Date: Thu Jan 23 17:49:49 2014 New Revision: 61774
URL: http://svn.reactos.org/svn/reactos?rev=61774&view=rev Log: [LPK] * Improve header inclusions. CORE-7716
Modified: trunk/reactos/dll/win32/lpk/dllmain.c trunk/reactos/dll/win32/lpk/ros_lpk.h trunk/reactos/dll/win32/lpk/stub.c
Modified: trunk/reactos/dll/win32/lpk/dllmain.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/lpk/dllmain.c?rev... ============================================================================== --- trunk/reactos/dll/win32/lpk/dllmain.c [iso-8859-1] (original) +++ trunk/reactos/dll/win32/lpk/dllmain.c [iso-8859-1] Thu Jan 23 17:49:49 2014 @@ -45,4 +45,3 @@
return TRUE; } -
Modified: trunk/reactos/dll/win32/lpk/ros_lpk.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/lpk/ros_lpk.h?rev... ============================================================================== --- trunk/reactos/dll/win32/lpk/ros_lpk.h [iso-8859-1] (original) +++ trunk/reactos/dll/win32/lpk/ros_lpk.h [iso-8859-1] Thu Jan 23 17:49:49 2014 @@ -5,13 +5,12 @@ * PROGRAMMER: Magnus Olsen (greatlrd) * */ -#define WIN32_NO_STATUS -#define NTOS_MODE_USER
#include <stdarg.h> + +#define WIN32_NO_STATUS #include <windef.h> #include <winbase.h> -#include <ndk/rtlfuncs.h>
/* FIXME USP10 api that does not have prototype in any include file */ VOID WINAPI LpkPresent(VOID); @@ -65,4 +64,3 @@ DWORD WINAPI LpkPSMTextOut(DWORD x1,DWORD x2,DWORD x3,DWORD x4,DWORD x5,DWORD x6); DWORD WINAPI LpkUseGDIWidthCache(DWORD x1,DWORD x2,DWORD x3,DWORD x4,DWORD x5); DWORD WINAPI ftsWordBreak(DWORD x1,DWORD x2,DWORD x3,DWORD x4,DWORD x5); -
Modified: trunk/reactos/dll/win32/lpk/stub.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/lpk/stub.c?rev=61... ============================================================================== --- trunk/reactos/dll/win32/lpk/stub.c [iso-8859-1] (original) +++ trunk/reactos/dll/win32/lpk/stub.c [iso-8859-1] Thu Jan 23 17:49:49 2014 @@ -7,6 +7,8 @@ */
#include "ros_lpk.h" + +#include <stubs.h>
#define UNIMPLEMENTED DbgPrint("LPK: %s is unimplemented, please try again later.\n", __FUNCTION__);