From e710923ad44f35048fd58c06ad06d6516cda8e14 Mon Sep 17 00:00:00 2001 From: Johannes Anderwald Date: Sun, 18 Jan 2009 17:44:10 +0000 Subject: [PATCH] - Fix IPortWavePci interface svn path=/trunk/; revision=38902 --- reactos/include/ddk/portcls.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reactos/include/ddk/portcls.h b/reactos/include/ddk/portcls.h index 1ef538e2be5..ce2543f38db 100644 --- a/reactos/include/ddk/portcls.h +++ b/reactos/include/ddk/portcls.h @@ -1193,6 +1193,9 @@ DECLARE_INTERFACE_(IPortWavePci, IPort) DEFINE_ABSTRACT_UNKNOWN() DEFINE_ABSTRACT_PORT() + STDMETHOD_(VOID, Notify)(THIS_ + IN PSERVICEGROUP ServiceGroup) PURE; + STDMETHOD_(NTSTATUS, NewMasterDmaChannel)(THIS_ OUT PDMACHANNEL* DmaChannel, IN PUNKNOWN OuterUnknown, @@ -1206,9 +1209,6 @@ DECLARE_INTERFACE_(IPortWavePci, IPort) IN DMA_SPEED DmaSpeed, IN ULONG MaximumLength, IN ULONG DmaPort) PURE; - - STDMETHOD_(VOID, Notify)(THIS_ - IN PSERVICEGROUP ServiceGroup) PURE; }; typedef IPortWavePci *PPORTWAVEPCI;