You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
356 B
C#

namespace OPC.Common
{
using System;
using System.Runtime.InteropServices;
[ComImport, InterfaceType(ComInterfaceType.InterfaceIsIUnknown), ComVisible(true), Guid("F31DFDE1-07B6-11d2-B2D8-0060083BA1FB")]
internal interface IOPCShutdown
{
void ShutdownRequest([In, MarshalAs(UnmanagedType.LPWStr)] string szReason);
}
}