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.

20 lines
484 B

  1. #ifndef LSACT_DEFINED
  2. #define LSACT_DEFINED
  3. #include "lsdefs.h"
  4. #include "kamount.h"
  5. #define sideNone 0 /* means no action */
  6. #define sideLeft 1
  7. #define sideRight 2
  8. #define sideLeftRight 3 /* Review(segeyge): how to distribute?*/
  9. typedef struct lsact /* action */
  10. {
  11. BYTE side; /* side of action (left/right/both) */
  12. KAMOUNT kamnt; /* amount of action */
  13. } LSACT;
  14. #endif /* !LSACT_DEFINED */