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.

21 lines
502 B

  1. #ifndef __XPLTFRM_H__
  2. #define __XPLTFRM_H__
  3. #include <platform.h>
  4. #ifdef unix
  5. #define LONGLONG_ZERO 0LL
  6. #define __int8 char
  7. #define DIR_SEPARATOR_CHAR TEXT('/')
  8. #define DIR_SEPARATOR_STRING TEXT("/")
  9. #define WEBDIR_STRING "Web/"
  10. // Follwing is workaround for MainWin Registry API bug 2053.
  11. #else
  12. #define LONGLONG_ZERO 0i64
  13. #define DIR_SEPARATOR_CHAR TEXT('\\')
  14. #define DIR_SEPARATOR_STRING TEXT("\\")
  15. #define WEBDIR_STRING "Web\\"
  16. #endif /* unix */
  17. #endif /* __XPLTFRM_H__ */