WVR.cs 398 B

123456789101112131415
  1. using System;
  2. namespace LYFZ.OtherExpansion.Win32.Const
  3. {
  4. public class WVR
  5. {
  6. public const int WVR_ALIGNTOP = 16;
  7. public const int WVR_ALIGNLEFT = 32;
  8. public const int WVR_ALIGNBOTTOM = 64;
  9. public const int WVR_ALIGNRIGHT = 128;
  10. public const int WVR_HREDRAW = 256;
  11. public const int WVR_VREDRAW = 512;
  12. public const int WVR_REDRAW = 768;
  13. public const int WVR_VALIDRECTS = 1024;
  14. }
  15. }