| 1234567891011121314151617181920212223242526 |
- //
- // System.Diagnostics.ICollectData.cs
- //
- // Authors:
- // Jonathan Pryor ([email protected])
- //
- // (C) 2002
- //
- using System;
- using System.Diagnostics;
- using System.Runtime.InteropServices;
- namespace System.Diagnostics {
- [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
- public interface ICollectData {
- void CloseData ();
- void CollectData (
- int id,
- IntPtr valueName,
- IntPtr data,
- int totalBytes,
- out IntPtr res);
- }
- }
|