private AcmDriver(IntPtr hAcmDriver) { this.driverId = hAcmDriver; this.details = default(AcmDriverDetails); this.details.structureSize = Marshal.SizeOf(this.details); MmException.Try(AcmInterop.acmDriverDetails(hAcmDriver, ref this.details, 0), "acmDriverDetails"); }
public static extern MmResult acmDriverDetails(IntPtr hAcmDriver, ref AcmDriverDetails driverDetails, int reserved);