STATDATA.cs 304 B

1234567891011121314
  1. using System;
  2. using System.Runtime.InteropServices;
  3. namespace LYFZ.OtherExpansion.SkinControl
  4. {
  5. [ComVisible(false)]
  6. [StructLayout(LayoutKind.Sequential)]
  7. public sealed class STATDATA
  8. {
  9. [MarshalAs(UnmanagedType.U4)]
  10. public int advf;
  11. [MarshalAs(UnmanagedType.U4)]
  12. public int dwConnection;
  13. }
  14. }