ICON.cs 196 B

12345678910
  1. using System;
  2. namespace LYFZ.OtherExpansion.Win32.Const
  3. {
  4. public static class ICON
  5. {
  6. public const int ICON_SMALL = 0;
  7. public const int ICON_BIG = 1;
  8. public const int ICON_SMALL2 = 2;
  9. }
  10. }