Leaked source code of windows server 2003
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.

18 lines
332 B

  1. Attribute VB_Name = "SizerIncludes"
  2. Option Explicit
  3. Public Enum DIMENSION_E
  4. DIM_MIN_E = 0
  5. DIM_TOP_E = 0
  6. DIM_LEFT_E = 1
  7. DIM_HEIGHT_E = 2
  8. DIM_WIDTH_E = 3
  9. DIM_BOTTOM_E = 4
  10. DIM_RIGHT_E = 5
  11. DIM_MAX_E = 5
  12. End Enum
  13. Public Enum OPERATION_E
  14. OP_ADD_E = 0
  15. OP_MULTIPLY_E = 1
  16. End Enum