From c14238f2a9bc20aea2b782f50182ca1404e1780b Mon Sep 17 00:00:00 2001 From: "KJK::Hyperion" Date: Mon, 22 Jun 2009 20:25:25 +0000 Subject: [PATCH] Correct placement of calling convention attribute svn path=/trunk/; revision=41563 --- reactos/include/ddk/ntddser.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/reactos/include/ddk/ntddser.h b/reactos/include/ddk/ntddser.h index 4e0e14ae5ed..39493ed33ea 100644 --- a/reactos/include/ddk/ntddser.h +++ b/reactos/include/ddk/ntddser.h @@ -365,12 +365,12 @@ typedef struct _SERENUM_PORT_DESC { 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);