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.

50 lines
1.5 KiB

  1. //-----------------------------------------------------------------------------
  2. //
  3. // File: rribase.h
  4. // Copyright (C) 1999 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. //-----------------------------------------------------------------------------
  8. // rribase.h : include file for basic RRI types and defines
  9. #if _MSC_VER > 1000
  10. #pragma once
  11. #endif // _MSC_VER > 1000
  12. ////////////////////////////////////////////////////////////////////
  13. // RRI Specific
  14. ////////////////////////////////////////////////////////////////////
  15. #ifdef _DEBUG
  16. #import "..\..\Import\Misc\LS\Debug\XML-NT.DLL"
  17. #else
  18. #import "..\..\Import\Misc\LS\Retail\XML-NT.DLL"
  19. #endif
  20. // Helper macros to put notes that are 'in your face' during compile time
  21. #define QUOTE(s) #s
  22. #define STRINGIZE(s) QUOTE(s)
  23. #ifndef NO_TODO
  24. #define TODO(m) message(__FILE__ "(" STRINGIZE(__LINE__) "): TODO: " m)
  25. #define FUTURE(m) message(__FILE__ "(" STRINGIZE(__LINE__) "): FUTURE: " m)
  26. #define NYI(m) message(__FILE__ "(" STRINGIZE(__LINE__) "): NYI: " m)
  27. #else
  28. #define TODO(m)
  29. #define FUTURE(m)
  30. #define NYI(m)
  31. #endif
  32. const int INT_MAX_NAVIGATION_MINUTES = 1220;
  33. const int INT_MIN_NAVIGATION_MINUTES = 1 ;
  34. const int INT_MAX_NAVIGATION_ACTIONS = 10000;
  35. const int INT_MIN_NAVIGATION_ACTIONS = 10 ;
  36. const int INT_MIN_NAVIGATION_DELAY = 0;
  37. const int INT_MAX_NAVIGATION_DELAY = 32000;
  38. ////////////////////////////////////////////////////////////////////
  39. const LPTSTR STR_YES = _T("yes");
  40. const LPTSTR STR_NO = _T("no");
  41. const LPTSTR STR_NORESID = _T("<N/A>");