From 4d8a768ec55faf698a08ec05c0f399dbecac19de Mon Sep 17 00:00:00 2001 From: Michael Zillgith Date: Thu, 11 Oct 2018 07:01:37 +0200 Subject: [PATCH] - .NET API: fixed wrong defintion for ClientReportControlBlock_getResvTms in ReportControlBlock class --- dotnet/IEC61850forCSharp/ReportControlBlock.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet/IEC61850forCSharp/ReportControlBlock.cs b/dotnet/IEC61850forCSharp/ReportControlBlock.cs index bd901c3f..9d414b87 100644 --- a/dotnet/IEC61850forCSharp/ReportControlBlock.cs +++ b/dotnet/IEC61850forCSharp/ReportControlBlock.cs @@ -130,7 +130,7 @@ namespace IEC61850 static extern void ClientReportControlBlock_setPurgeBuf (IntPtr self, [MarshalAs(UnmanagedType.I1)] bool purgeBuf); [DllImport("iec61850", CallingConvention = CallingConvention.Cdecl)] - static extern Int32 ClientReportControlBlock_getResvTms (IntPtr self); + static extern Int16 ClientReportControlBlock_getResvTms (IntPtr self); [DllImport("iec61850", CallingConvention = CallingConvention.Cdecl)] static extern void ClientReportControlBlock_setResvTms (IntPtr self, Int16 resvTms);