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.

25 lines
629 B

  1. // StatusWord.h -- StatusWord
  2. // (c) Copyright Schlumberger Technology Corp., unpublished work, created
  3. // 1999. This computer program includes Confidential, Proprietary
  4. // Information and is a Trade Secret of Schlumberger Technology Corp. All
  5. // use, disclosure, and/or reproduction is prohibited unless authorized
  6. // in writing. All Rights Reserved.
  7. #if !defined(IOP_STATUSWORD_H)
  8. #define IOP_STATUSWORD_H
  9. namespace iop
  10. {
  11. enum
  12. {
  13. swNull = 0x0000, // special value
  14. swSuccess = 0x9000,
  15. };
  16. typedef WORD StatusWord;
  17. } // namespace iop
  18. #endif // IOP_STATUSWORD_H