m2m模型翻译
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.

17 lines
599 B

6 months ago
  1. from __future__ import print_function, unicode_literals, absolute_import
  2. FOREGROUND_BLUE = 0x0001
  3. FOREGROUND_GREEN = 0x0002
  4. FOREGROUND_RED = 0x0004
  5. FOREGROUND_INTENSITY = 0x0008
  6. BACKGROUND_BLUE = 0x0010
  7. BACKGROUND_GREEN = 0x0020
  8. BACKGROUND_RED = 0x0040
  9. BACKGROUND_INTENSITY = 0x0080
  10. COMMON_LVB_LEADING_BYTE = 0x0100
  11. COMMON_LVB_TRAILING_BYTE = 0x0200
  12. COMMON_LVB_GRID_HORIZONTAL= 0x0400
  13. COMMON_LVB_GRID_LVERTICAL = 0x0800
  14. COMMON_LVB_GRID_RVERTICAL = 0x1000
  15. COMMON_LVB_REVERSE_VIDEO = 0x2000
  16. COMMON_LVB_UNDERSCORE = 0x4000