DISPPARAMS.cs 334 B

123456789101112131415161718192021
  1. // System.Runtime.InteropServices/DISPPARAMS.cs
  2. //
  3. // Paolo Molaro ([email protected])
  4. //
  5. // (C) 2002 Ximian, Inc.
  6. using System;
  7. namespace System.Runtime.InteropServices
  8. {
  9. [ComVisible(false)]
  10. public struct DISPPARAMS {
  11. public int cArgs;
  12. public int cNamedArgs;
  13. public IntPtr rgdispidNamedArgs;
  14. public IntPtr rgvarg;
  15. }
  16. }