Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
948 B

  1. /**********************************************************************/
  2. /** Microsoft Windows/NT **/
  3. /** Copyright(c) Microsoft Corp., 1991 **/
  4. /**********************************************************************/
  5. /*
  6. bltstyle.h
  7. Style bits for BLT custom controls
  8. This file defines and coordinates the style bits of all BLT custom
  9. controls.
  10. FILE HISTORY:
  11. beng 21-Feb-1992 Separated from bltrc.h
  12. */
  13. #ifndef _BLTSTYLE_H_
  14. #define _BLTSTYLE_H_
  15. // if defined, the SPIN_SLE_NUM will add zero in front of the number to
  16. // be display. The number of zero is equal to the length of the max output
  17. // number - the current number's length
  18. //
  19. #define SPIN_SSN_ADD_ZERO 0x1000L
  20. // if the style is defined, the GRAPHICAL_BUTTON_WITH_DISABLE will be 3D.
  21. // otherwise, it will be 2 d.
  22. //
  23. #define GB_3D 0x1000L
  24. #endif // _BLTSTYLE_H_