PlayRecordCallback.cs 384 B

12345678910111213141516171819
  1. //
  2. // System.Drawing.Imaging.PlayRecordCallback.cs
  3. //
  4. // (C) 2002 Ximian, Inc. http://www.ximian.com
  5. // Author: Everaldo Canuto
  6. // eMail: [email protected]
  7. //
  8. using System;
  9. namespace System.Drawing.Imaging {
  10. [Serializable]
  11. public delegate void PlayRecordCallback(
  12. EmfPlusRecordType recordType,
  13. int flags,
  14. int dataSize,
  15. IntPtr recordData
  16. );
  17. }