global.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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. #ifdef ENABLE_NLS
  56. #include <libintl.h>
  57. #define _(String) gettext (String)
  58. #ifdef gettext_noop
  59. #define N_(String) gettext_noop (String)
  60. #else
  61. #define N_(String) (String)
  62. #endif
  63. #else /* Stubs that do something close enough. */
  64. #define textdomain(String)
  65. #define gettext(String) (String)
  66. #define ngettext(String1,String2,Num) (((Num) == 1) ? (String1) : (String2))
  67. #define dgettext(Domain,Message) (Message)
  68. #define dcgettext(Domain,Message,Type) (Message)
  69. #define bindtextdomain(Domain,Directory)
  70. #define _(String) (String)
  71. #define N_(String) (String)
  72. #endif /* !ENABLE_NLS */
  73. #include "fs.h"
  74. #ifdef USE_MAINTAINER_MODE
  75. #include "lib/logging.h"
  76. #endif
  77. #ifdef min
  78. #undef min
  79. #endif
  80. #ifdef max
  81. #undef max
  82. #endif
  83. #define min(x, y) ((x) > (y) ? (y) : (x))
  84. #define max(x, y) ((x) > (y) ? (x) : (y))
  85. /* Just for keeping Your's brains from invention a proper size of the buffer :-) */
  86. #define BUF_10K 10240L
  87. #define BUF_8K 8192L
  88. #define BUF_4K 4096L
  89. #define BUF_1K 1024L
  90. #define BUF_LARGE BUF_1K
  91. #define BUF_MEDIUM 512
  92. #define BUF_SMALL 128
  93. #define BUF_TINY 64
  94. /* AIX compiler doesn't understand '\e' */
  95. #define ESC_CHAR '\033'
  96. #define ESC_STR "\033"
  97. /* OS specific defines */
  98. #define PATH_SEP '/'
  99. #define PATH_SEP_STR "/"
  100. #define PATH_ENV_SEP ':'
  101. #define TMPDIR_DEFAULT "/tmp"
  102. #define SCRIPT_SUFFIX ""
  103. #define get_default_editor() "vi"
  104. #define OS_SORT_CASE_SENSITIVE_DEFAULT 1
  105. /* C++ style type casts */
  106. #define const_cast(m_type, m_expr) ((m_type) (m_expr))
  107. #if 0
  108. #ifdef MC_ENABLE_DEBUGGING_CODE
  109. #undef NDEBUG
  110. #else
  111. #define NDEBUG
  112. #endif
  113. #include <assert.h>
  114. #endif
  115. #define MC_ERROR mc_main_error_quark ()
  116. /*** enums ***************************************************************************************/
  117. /*** structures declarations (and typedefs of structures)*****************************************/
  118. /*** global variables defined in .c file *********************************************************/
  119. /*** declarations of public functions ************************************************************/
  120. void refresh_screen (void *);
  121. GQuark mc_main_error_quark (void);
  122. /*** inline functions ****************************************************************************/
  123. #endif