From: Colin Finck Date: Wed, 27 Feb 2008 22:47:56 +0000 (+0000) Subject: Fix portcls build, broken in r32517, by moving the header inclusion order in "portcls... X-Git-Tag: backups/hyperion@33110~540 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=19d6003deba881ed61c29281318367b667890e56 Fix portcls build, broken in r32517, by moving the header inclusion order in "portcls.h" around. I checked this with MS DDK and its "wdm.h" file also defines no types and depends on a previously included "ntddk.h" by the driver. svn path=/trunk/; revision=32519 --- diff --git a/reactos/include/ddk/portcls.h b/reactos/include/ddk/portcls.h index d5f92ee194d..33e46ccb649 100644 --- a/reactos/include/ddk/portcls.h +++ b/reactos/include/ddk/portcls.h @@ -123,6 +123,12 @@ #ifndef PORTCLS_H #define PORTCLS_H +//#include +#include +#include +#include +#include + #ifdef __cplusplus extern "C" { @@ -132,12 +138,6 @@ extern "C" #include #endif -//#include -#include -#include -#include -#include - #ifndef PC_NO_IMPORTS #define PORTCLASSAPI EXTERN_C __declspec(dllimport) #else