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.

19 lines
314 B

  1. //
  2. // Copyright (c) 1997-2001 Microsoft Corporation, All Rights Reserved
  3. //
  4. #ifndef BOOL_H
  5. #define BOOL_H
  6. /*
  7. * Just typedefs BOOL to an integer, and defines values for true and false
  8. */
  9. typedef int BOOL;
  10. #ifndef FALSE
  11. const int FALSE = 0;
  12. const int TRUE = !FALSE;
  13. #endif
  14. #endif // BOOL_H