PAINTSTRUCT.cs 399 B

1234567891011121314151617181920
  1. using System;
  2. namespace LYFZ.OtherExpansion.Win32.Struct
  3. {
  4. public struct PAINTSTRUCT
  5. {
  6. public IntPtr hdc;
  7. public int fErase;
  8. public RECT rcPaint;
  9. public int fRestore;
  10. public int fIncUpdate;
  11. public int Reserved1;
  12. public int Reserved2;
  13. public int Reserved3;
  14. public int Reserved4;
  15. public int Reserved5;
  16. public int Reserved6;
  17. public int Reserved7;
  18. public int Reserved8;
  19. }
  20. }