stdio.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_STDIO_H
  36. #define HLXSYS_STDIO_H
  37. #if defined(_OPENWAVE)
  38. #include "platform/openwave/hx_op_debug.h"
  39. #include "platform/openwave/hx_op_stdc.h"
  40. #include "platform/openwave/hx_op_fs.h"
  41. #include "hlxclib/sys/types.h"
  42. #else
  43. #include <stdio.h>
  44. #include <stdarg.h>
  45. #endif
  46. #if __cplusplus
  47. extern "C" {
  48. #endif
  49. /* Make sure vsnprintf is defined for all platforms */
  50. int __helix_snprintf(char *str, size_t size, const char  *format, ...);
  51. int __helix_vsnprintf(char *str, size_t size, const char  *format, va_list ap);
  52. #if defined(_OPENWAVE)
  53. int __helix_printf(const char* format, ...);
  54. int __helix_vprintf(const char  *format, va_list ap);
  55. int __helix_sscanf(const char *buffer, const char *format, ...);
  56. #define printf __helix_printf
  57. #define vprintf __helix_vprintf
  58. #define snprintf op_snprintf
  59. #define vsnprintf __helix_vsnprintf
  60. #define _vsnprintf __helix_vsnprintf
  61. #define sscanf  __helix_sscanf
  62. #define unlink OpFsRemove
  63. typedef void* FILE;
  64. #define stdin  (FILE*)0
  65. #define stdout (FILE*)1
  66. #define stderr (FILE*)2
  67. #ifndef EOF
  68. #define EOF ((size_t)-1)
  69. FILE* __helix_fopen(const char *, const char *);
  70. size_t __helix_fread(void *, size_t, size_t, FILE *);
  71. size_t __helix_fwrite(const void *, size_t, size_t, FILE *);
  72. int __helix_fseek(FILE *, long, int);
  73. int __helix_fclose(FILE *);
  74. int __helix_feof(FILE *);
  75. long __helix_ftell(FILE *);
  76. char* __helix_fgets(char*, int, FILE *);
  77. int __helix_fputc(int, FILE *);
  78. int __helix_ferror(FILE *);
  79. int __helix_fflush(FILE *);
  80. int __helix_rename(const char *oldname, const char *newname);
  81. FILE* __helix_fdopen(int, const char *);
  82. int     __helix_fileno(FILE* );
  83. int __helix_fprintf(FILE* f, const char *format, ...);
  84. int __helix_vfprintf(FILE* f, const char  *format, va_list ap);
  85. #define puts(x) printf("%sn", (x))
  86. #define fopen __helix_fopen
  87. #define fread __helix_fread
  88. #define fseek __helix_fseek
  89. #define fwrite __helix_fwrite
  90. #define fclose __helix_fclose
  91. #define feof __helix_feof
  92. #define ftell __helix_ftell
  93. #define fgets __helix_fgets
  94. #define fputc __helix_fputc
  95. #define putc __helix_fputc
  96. #define ferror  __helix_ferror
  97. #define rewind(fp)  __helix_fseek(fp, 0, SEEK_SET)
  98. #define fprintf __helix_fprintf
  99. #define vfprintf __helix_fprintf
  100. #define fflush __helix_fflush             
  101. #define rename  __helix_rename
  102. #define _fdopen  __helix_fdopen
  103. #define fileno  __helix_fileno
  104. #endif // end of _OPENWAVE
  105. #elif defined(_WINDOWS)
  106. #define snprintf _snprintf
  107. #define vsnprintf _vsnprintf
  108. #elif defined(_SYMBIAN) || defined(_WINCE) || defined(_IRIX)
  109. #define snprintf __helix_snprintf
  110. #define vsnprintf __helix_vsnprintf
  111. #endif
  112. #if __cplusplus
  113. }
  114. #endif
  115. #endif /* HLXSYS_STDIO_H */