fcntl.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:4k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #ifndef HLXSYS_FCNTL_H
  36. #define HLXSYS_FCNTL_H
  37. #if !defined(WIN32_PLATFORM_PSPC) && !defined(_OPENWAVE)
  38. #include <fcntl.h>
  39. #else
  40. #if defined(_OPENWAVE)
  41. #include "platform/openwave/hx_op_fs.h"
  42. #define _O_RDONLY kOpFsFlagRdOnly
  43. #define _O_WRONLY kOpFsFlagWrOnly
  44. #define _O_RDWR   kOpFsFlagRdwr
  45. #define _O_CREAT  kOpFsFlagCreate
  46. #define _O_TRUNC  kOpFsFlagTrunc
  47. #define _O_EXCL   kOpFsFlagExcl
  48. // Make sure this doesn't interfere with any of above flags...and make
  49. // sure the Openwave-specific code masks it out before calling the OpFs
  50. // functions.
  51. #define _O_APPEND 0x0008
  52. #else
  53. #define _O_RDONLY       0x0000
  54. #define _O_WRONLY       0x0001
  55. #define _O_RDWR         0x0002
  56. #define _O_APPEND       0x0008
  57. #define _O_CREAT        0x0100
  58. #define _O_TRUNC        0x0200
  59. #define _O_EXCL         0x0400
  60. #endif
  61. #ifndef _O_BINARY
  62. #define _O_BINARY 0
  63. #endif /* _O_BINARY */
  64. #ifndef O_CREAT
  65. #define O_CREAT _O_CREAT
  66. #endif /* O_CREAT */
  67. #ifndef O_APPEND
  68. #define O_APPEND _O_APPEND
  69. #endif /* O_APPEND */
  70. #ifndef O_TRUNC
  71. #define O_TRUNC _O_TRUNC
  72. #endif /* O_TRUNC */
  73. #ifndef O_EXCL
  74. #define O_EXCL _O_EXCL
  75. #endif /* O_EXCL */
  76. #ifndef O_BINARY
  77. #define O_BINARY _O_BINARY
  78. #endif /* O_BINARY */
  79. #ifndef O_RDONLY
  80. #define O_RDONLY (_O_RDONLY | _O_BINARY)
  81. #endif /* O_RDONLY */
  82. #ifndef O_WRONLY
  83. #define O_WRONLY (_O_WRONLY | _O_BINARY)
  84. #endif /* O_WRONLY */
  85. #ifndef O_RDWR
  86. #define O_RDWR (_O_RDWR | _O_BINARY)
  87. #endif /* O_RDWR */
  88. #endif /* defined(WIN32_PLATFORM_PSPC) */
  89. #if defined(_UNIX) || (defined(_MACINTOSH) && defined(_MAC_MACHO))
  90. #if !defined(O_BINARY)
  91. #define O_BINARY    0
  92. #endif        // O_BINARY
  93. #endif        // _UNIX
  94. // XXX HP O_ACCMODE has been defined(0x0003) in macfd.h on MacOSX
  95. #if !defined(_MACINTOSH)
  96. #ifndef O_ACCMODE
  97. #define O_ACCMODE (_O_RDONLY | _O_WRONLY | _O_RDWR | _O_BINARY)
  98. #endif /* O_ACCMODE */
  99. #endif /* _MACINTOSH */
  100. #endif /* HLXSYS_FCNTL_H */