BINDPTR.cs 304 B

1234567891011121314151617181920
  1. // System.Runtime.InteropServices/BINDPTR.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 BINDPTR {
  11. public IntPtr lpfuncdesc;
  12. public IntPtr lptcomp;
  13. public IntPtr lpvardesc;
  14. }
  15. }