00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef ACE_OS_INCLUDE_OS_STDIO_H
00017 #define ACE_OS_INCLUDE_OS_STDIO_H
00018
00019 #include "ace/pre.h"
00020
00021 #include "ace/config-lite.h"
00022
00023 #if !defined (ACE_LACKS_PRAGMA_ONCE)
00024 # pragma once
00025 #endif
00026
00027
00028 #include "ace/os_include/os_stdarg.h"
00029 #include "ace/os_include/os_stddef.h"
00030
00031 #if !defined (ACE_LACKS_STDIO_H)
00032 # include <stdio.h>
00033 #endif
00034
00035 #if defined (ACE_VXWORKS)
00036
00037 # include <ioLib.h>
00038
00039 # include <remLib.h>
00040 # if defined (__RTP__) && ((ACE_VXWORKS >= 0x620) && (ACE_VXWORKS <= 0x650))
00041 # define L_cuserid _PARM_L_cuserid
00042 # endif
00043 #endif
00044
00045
00046 #ifdef __cplusplus
00047 extern "C"
00048 {
00049 #endif
00050
00051 # if defined (INTEGRITY)
00052 # define ACE_MAX_USERID 32
00053 # elif defined (ACE_WIN32)
00054 # define ACE_MAX_USERID 32
00055 # else
00056 # define ACE_MAX_USERID L_cuserid
00057 #endif
00058
00059 #if defined (BUFSIZ)
00060 # define ACE_STREAMBUF_SIZE BUFSIZ
00061 #else
00062 # define ACE_STREAMBUF_SIZE 1024
00063 #endif
00064
00065 #if defined (ACE_WIN32)
00066 typedef OVERLAPPED ACE_OVERLAPPED;
00067 #else
00068 struct ACE_OVERLAPPED
00069 {
00070 unsigned long Internal;
00071 unsigned long InternalHigh;
00072 unsigned long Offset;
00073 unsigned long OffsetHigh;
00074 ACE_HANDLE hEvent;
00075 };
00076 #endif
00077
00078 #ifdef __cplusplus
00079 }
00080 #endif
00081
00082 #include "ace/post.h"
00083 #endif