global.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. /** \file global.h
  2. * \brief Header: %global definitions for compatibility
  3. *
  4. * This file should be included after all system includes and before all local includes.
  5. */
  6. #ifndef MC_GLOBAL_H
  7. #define MC_GLOBAL_H
  8. #if defined(STDC_HEADERS) || defined(HAVE_STRING_H)
  9. #include <string.h>
  10. /* An ANSI string.h and pre-ANSI memory.h might conflict */
  11. #if !defined(STDC_HEADERS) && defined(HAVE_MEMORY_H)
  12. #include <memory.h>
  13. #endif /* !STDC_HEADERS & HAVE_MEMORY_H */
  14. #else /* !STDC_HEADERS & !HAVE_STRING_H */
  15. #include <strings.h>
  16. /* memory and strings.h conflict on other systems */
  17. #endif /* !STDC_HEADERS & !HAVE_STRING_H */
  18. #ifdef HAVE_SYS_PARAM_H
  19. #include <sys/param.h>
  20. #endif
  21. /*** typedefs(not structures) and defined constants **********************************************/
  22. /* The O_BINARY definition was taken from gettext */
  23. #if !defined O_BINARY && defined _O_BINARY
  24. /* For MSC-compatible compilers. */
  25. #define O_BINARY _O_BINARY
  26. #endif
  27. #ifdef __BEOS__
  28. /* BeOS 5 has O_BINARY, but is has no effect. */
  29. #undef O_BINARY
  30. #endif
  31. /* On reasonable systems, binary I/O is the default. */
  32. #ifndef O_BINARY
  33. #define O_BINARY 0
  34. #endif
  35. /* Replacement for O_NONBLOCK */
  36. #ifndef O_NONBLOCK
  37. #ifdef O_NDELAY /* SYSV */
  38. #define O_NONBLOCK O_NDELAY
  39. #else /* BSD */
  40. #define O_NONBLOCK FNDELAY
  41. #endif /* !O_NDELAY */
  42. #endif /* !O_NONBLOCK */
  43. #ifdef HAVE_SYS_SELECT_H
  44. #include <sys/select.h>
  45. #endif
  46. #if defined(__QNX__) && !defined(__QNXNTO__)
  47. /* exec*() from <process.h> */
  48. #include <unix.h>
  49. #endif
  50. #include <glib.h>
  51. #include "glibcompat.h"
  52. #ifndef __GNUC__
  53. #define __attribute__(x)
  54. #endif
  55. /* Solaris9 doesn't have PRIXMAX */
  56. #ifndef PRIXMAX
  57. #define PRIXMAX PRIxMAX
  58. #endif
  59. #ifdef ENABLE_NLS
  60. #include <libintl.h>
  61. #define _(String) gettext (String)
  62. #ifdef gettext_noop
  63. #define N_(String) gettext_noop (String)
  64. #else
  65. #define N_(String) (String)
  66. #endif
  67. #else /* Stubs that do something close enough. */
  68. #define textdomain(String)
  69. #define gettext(String) (String)
  70. #define ngettext(String1,String2,Num) (((Num) == 1) ? (String1) : (String2))
  71. #define dgettext(Domain,Message) (Message)
  72. #define dcgettext(Domain,Message,Type) (Message)
  73. #define bindtextdomain(Domain,Directory)
  74. #define _(String) (String)
  75. #define N_(String) (String)
  76. #endif /* !ENABLE_NLS */
  77. #include "fs.h"
  78. #ifdef USE_MAINTAINER_MODE
  79. #include "lib/logging.h"
  80. #endif
  81. #ifdef min
  82. #undef min
  83. #endif
  84. #ifdef max
  85. #undef max
  86. #endif
  87. #define min(x, y) ((x) > (y) ? (y) : (x))
  88. #define max(x, y) ((x) > (y) ? (x) : (y))
  89. /* Just for keeping Your's brains from invention a proper size of the buffer :-) */
  90. #define BUF_10K 10240L
  91. #define BUF_8K 8192L
  92. #define BUF_4K 4096L
  93. #define BUF_1K 1024L
  94. #define BUF_LARGE BUF_1K
  95. #define BUF_MEDIUM 512
  96. #define BUF_SMALL 128
  97. #define BUF_TINY 64
  98. /* AIX compiler doesn't understand '\e' */
  99. #define ESC_CHAR '\033'
  100. #define ESC_STR "\033"
  101. /* OS specific defines */
  102. #define PATH_SEP '/'
  103. #define PATH_SEP_STR "/"
  104. #define PATH_ENV_SEP ':'
  105. #define TMPDIR_DEFAULT "/tmp"
  106. #define SCRIPT_SUFFIX ""
  107. #define get_default_editor() "vi"
  108. #define OS_SORT_CASE_SENSITIVE_DEFAULT 1
  109. /* C++ style type casts */
  110. #define const_cast(m_type, m_expr) ((m_type) (m_expr))
  111. #if 0
  112. #ifdef MC_ENABLE_DEBUGGING_CODE
  113. #undef NDEBUG
  114. #else
  115. #define NDEBUG
  116. #endif
  117. #include <assert.h>
  118. #endif
  119. #define MC_ERROR mc_main_error_quark ()
  120. /*** enums ***************************************************************************************/
  121. /*** structures declarations (and typedefs of structures)*****************************************/
  122. /*** global variables defined in .c file *********************************************************/
  123. /*** declarations of public functions ************************************************************/
  124. void refresh_screen (void *);
  125. GQuark mc_main_error_quark (void);
  126. /*** inline functions ****************************************************************************/
  127. #endif