statmacros.h
上传用户:tany51
上传日期:2013-06-12
资源大小:1397k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.  * Copyright (C) 2000  Ross Combs (rocombs@cs.nmsu.edu)
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  */
  18. #ifndef INCLUDED_STATMACROS_PROTOS
  19. #define INCLUDED_STATMACROS_PROTOS
  20. #ifdef STAT_MACROS_BROKEN
  21. # ifdef S_ISREG
  22. #  undef S_ISREG
  23. # endif
  24. # ifdef S_ISDIR
  25. #  undef S_ISDIR
  26. # endif
  27. # ifdef S_ISCHR
  28. #  undef S_ISCHR
  29. # endif
  30. # ifdef S_ISBLK
  31. #  undef S_ISBLK
  32. # endif
  33. # ifdef S_ISFIFO
  34. #  undef S_ISFIFO
  35. # endif
  36. # ifdef S_ISSOCK
  37. #  undef S_ISSOCK
  38. # endif
  39. # ifdef S_ISLNK
  40. #  undef S_ISLNK
  41. # endif
  42. #endif
  43. #ifndef S_IFMT
  44. # define S_IFMT 0170000
  45. #endif
  46. #ifndef S_ISREG
  47. # ifdef S_IFREG
  48. #  define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
  49. # endif
  50. #endif
  51. #ifndef S_ISDIR
  52. # ifdef S_IFDIR
  53. #  define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
  54. # endif
  55. #endif
  56. #ifndef S_ISCHR
  57. # ifdef S_IFCHR
  58. #  define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
  59. # endif
  60. #endif
  61. #ifndef S_ISBLK
  62. # ifdef S_IFBLK
  63. #  define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
  64. # endif
  65. #endif
  66. #ifndef S_ISFIFO
  67. # ifdef S_IFIFO
  68. #  define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
  69. # endif
  70. #endif
  71. #ifndef S_ISLNK
  72. # ifdef S_IFLNK
  73. #  define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
  74. # endif
  75. #endif
  76. #ifndef S_ISSOCK
  77. # ifdef S_IFSOCK
  78. #  define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
  79. # endif
  80. #endif
  81. #ifndef S_ISCDF
  82. # ifdef S_CDF
  83. #  define S_ISCDF(m) (S_ISDIR(m) && ((m) & S_CDF))
  84. # endif
  85. #endif
  86. #ifndef S_ISMPB
  87. # ifdef S_IFMPB /* V7 */
  88. #  define S_ISMPB(m) (((m) & S_IFMT) == S_IFMPB)
  89. #  define S_ISMPC(m) (((m) & S_IFMT) == S_IFMPC)
  90. # endif
  91. #endif
  92. #ifndef S_ISNWK
  93. # ifdef S_IFNWK /* HP/UX */
  94. #  define S_ISNWK(m) (((m) & S_IFMT) == S_IFNWK)
  95. # endif
  96. #endif
  97. #ifndef S_ISUID
  98. # define S_ISUID 01000 /* set user ID */
  99. #endif
  100. #ifndef S_ISGID
  101. # define S_ISGID 01000 /* set group ID */
  102. #endif
  103. #ifndef S_ISVTX
  104. # define S_ISVTX 01000 /* sticky bit */
  105. #endif
  106. #ifndef S_IRUSR
  107. # ifdef S_IREAD
  108. #  define S_IRUSR S_IREAD
  109. # else
  110. #  define S_IRUSR 00400
  111. # endif
  112. #endif
  113. #ifndef S_IWUSR
  114. # ifdef S_IWRITE
  115. #  define S_IWUSR S_IWRITE
  116. # else
  117. #  define S_IWUSR 00200
  118. # endif
  119. #endif
  120. #ifndef S_IXUSR
  121. # ifdef S_IEXEC
  122. #  define S_IXUSR S_IEXEC
  123. # else
  124. #  define S_IXUSR 00100
  125. # endif
  126. #endif
  127. #ifndef S_IRWXU
  128. # define S_IRWXU (S_IRUSR|S_IWUSR|S_IXUSR)
  129. #endif
  130. #ifndef S_IRGRP
  131. # define S_IRGRP (S_IRUSR >> 3)
  132. #endif
  133. #ifndef S_IWGRP
  134. # define S_IWGRP (S_IWUSR >> 3)
  135. #endif
  136. #ifndef S_IXGRP
  137. # define S_IXGRP (S_IXUSR >> 3)
  138. #endif
  139. #ifndef S_IRWXG
  140. # define S_IRWXG (S_IRGRP|S_IWGRP|S_IXGRP)
  141. #endif
  142. #ifndef S_IROTH
  143. # define S_IROTH (S_IRGRP >> 3)
  144. #endif
  145. #ifndef S_IWOTH
  146. # define S_IWOTH (S_IWGRP >> 3)
  147. #endif
  148. #ifndef S_IXOTH
  149. # define S_IXOTH (S_IXGRP >> 3)
  150. #endif
  151. #ifndef S_IRWXO
  152. # define S_IRWXO (S_IROTH|S_IWOTH|S_IXOTH)
  153. #endif
  154. #endif