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.

13 lines
212 B

  1. #ifndef LSKALIGN_DEFINED
  2. #define LSKALIGN_DEFINED
  3. enum lskalign /* kinds of para alignment */
  4. {
  5. lskalLeft,
  6. lskalCentered,
  7. lskalRight,
  8. };
  9. typedef enum lskalign LSKALIGN;
  10. #endif /* !LSKALIGN_DEFINED */