SS.cs 222 B

12345678910111213
  1. using System;
  2. namespace LYFZ.OtherExpansion.Win32.Const
  3. {
  4. public class SS
  5. {
  6. public const int SS_OWNERDRAW = 13;
  7. public const int SS_ETCHEDHORZ = 16;
  8. public const int SS_ETCHEDVERT = 17;
  9. private SS()
  10. {
  11. }
  12. }
  13. }