Author: hyperion Date: Tue Jun 23 00:25:25 2009 New Revision: 41563
URL: http://svn.reactos.org/svn/reactos?rev=41563&view=rev Log: Correct placement of calling convention attribute
Modified: trunk/reactos/include/ddk/ntddser.h
Modified: trunk/reactos/include/ddk/ntddser.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/ddk/ntddser.h?rev=4... ============================================================================== --- trunk/reactos/include/ddk/ntddser.h [iso-8859-1] (original) +++ trunk/reactos/include/ddk/ntddser.h [iso-8859-1] Tue Jun 23 00:25:25 2009 @@ -365,12 +365,12 @@ USHORT Reserved[1]; } SERENUM_PORT_DESC, *PSERENUM_PORT_DESC;
-typedef UCHAR NTAPI -(*PSERENUM_READPORT)( +typedef UCHAR +(NTAPI*PSERENUM_READPORT)( PVOID SerPortAddress);
-typedef VOID NTAPI -(*PSERENUM_WRITEPORT)( +typedef VOID +(NTAPI*PSERENUM_WRITEPORT)( PVOID SerPortAddress, UCHAR Value);