global.h
上传用户:jmzj888
上传日期:2007-01-02
资源大小:220k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB
  2.    This file is public domain and comes with NO WARRANTY of any kind */
  3. /*
  4.   This is the main include file that should included 'first' in every program.
  5.   It contains includes for two system dependent files. One for a the operating
  6.   system (s-) and one for the processor (m-).
  7.   For a list of what a machine and a operatings system must have se the
  8.   standard s- and m- files.
  9.  */
  10. #ifndef _global_h
  11. #define _global_h
  12. #if defined(_lint) && !defined(lint)
  13. #define lint
  14. #endif
  15. #ifndef stdin
  16. #include <stdio.h> /* Include so that m- and s- files can fix things */
  17. #endif
  18. #include <m-pc.h>
  19. #include <s-msdos.h>
  20. #ifdef USES_TYPES
  21. #include <sys/types.h>
  22. #endif
  23. #if defined(DBUG_ON) && defined(DBUG_OFF)
  24. #undef DBUG_OFF
  25. #endif
  26. #if defined(lint) && !defined(DBUG_OFF)
  27. #define DBUG_OFF
  28. #endif
  29. #include <dbug.h>
  30. /* Define void to stop lint from generating "null effekt" comments */
  31. #if defined(lint) || defined(FORCE_INIT_OF_VARS)
  32. #define LINT_INIT(var) var=0 /* No uninitialize-warning */
  33. #else
  34. #define LINT_INIT(var)
  35. #endif
  36. /* Define som useful general macros */
  37. #if defined(__cplusplus) && defined(__GNUG__)
  38. #define max(a, b) ((a) >? (b))
  39. #define min(a, b) ((a) <? (b))
  40. #else
  41. #define max(a, b) ((a) > (b) ? (a) : (b))
  42. #define min(a, b) ((a) < (b) ? (a) : (b))
  43. #endif
  44. #define sgn(a) (((a) < 0) ? -1 : ((a) > 0) ? 1 : 0)
  45. #define swap(t,a,b) { register t dummy; dummy = a; a = b; b = dummy; }
  46. #define test(a) ((a) ? 1 : 0)
  47. #define set_if_bigger(a,b)  { if ((a) < (b)) (a)=(b); }
  48. #define set_if_smaller(a,b) { if ((a) > (b)) (a)=(b); }
  49. #define test_all_bits(a,b) (((a) & (b)) == (b))
  50. #define array_elements(A) ((uint) (sizeof(A)/sizeof(A[0])))
  51. /* Define som general constants */
  52. #ifndef TRUE
  53. #define TRUE (1) /* Logical true */
  54. #define FALSE (0) /* Logical false */
  55. #endif
  56. #ifdef __GNUC__
  57. #define function_volatile volatile
  58. #ifndef alloca
  59. #define alloca __builtin_alloca
  60. #endif
  61. #ifdef __cplusplus
  62. #define __attribute__(A)
  63. #endif
  64. #else
  65. #define __attribute__(A)
  66. #endif
  67. #endif /* _global_h */