os_stdio.h

来自「ICC means Internet Communication Compone」· C头文件 代码 · 共 84 行

H
84
字号
// -*- C++ -*-//=============================================================================/** *  @file    os_stdio.h * *  standard buffered input/output * *  $Id: os_stdio.h 78593 2007-06-27 06:10:37Z johnnyw $ * *  @author Don Hinton <dhinton@dresystems.com> *  @author This code was originally in various places including ace/OS.h. *///=============================================================================#ifndef ACE_OS_INCLUDE_OS_STDIO_H#define ACE_OS_INCLUDE_OS_STDIO_H#include "os/config-lite.h"#if !defined (ACE_LACKS_PRAGMA_ONCE)# pragma once#endif /* ACE_LACKS_PRAGMA_ONCE */// NOTE: stdarg.h must be #included before stdio.h on LynxOS.#include "os/os_include/os_stdarg.h"#include "os/os_include/os_stddef.h"#if !defined (ACE_LACKS_STDIO_H)#  include /**/ <stdio.h>#endif /* !ACE_LACKS_STDIO_H */#if defined (ACE_VXWORKS)// for remove(), rename()#  include /**/ <ioLib.h>// for remCurIdGet()#  include /**/ <remLib.h>#  if defined (__RTP__) && ((ACE_VXWORKS >= 0x620) && (ACE_VXWORKS <= 0x650))#    define L_cuserid       _PARM_L_cuserid#  endif#endif /* ACE_VXWORKS */// Place all additions (especially function declarations) within extern "C" {}#ifdef __cplusplusextern "C"{#endif /* __cplusplus */# if defined (INTEGRITY)#   define ACE_MAX_USERID 32# elif defined (ACE_WIN32)#   define ACE_MAX_USERID 32# else#  define ACE_MAX_USERID L_cuserid#endif /* INTEGRITY */#if defined (BUFSIZ)#  define ACE_STREAMBUF_SIZE BUFSIZ#else#  define ACE_STREAMBUF_SIZE 1024#endif /* BUFSIZ */#if defined (ACE_WIN32)  typedef OVERLAPPED ACE_OVERLAPPED;#else  struct ACE_OVERLAPPED  {    unsigned long Internal;    unsigned long InternalHigh;    unsigned long Offset;    unsigned long OffsetHigh;    ACE_HANDLE hEvent;  };#endif /* ACE_WIN32 */#ifdef __cplusplus}#endif /* __cplusplus */#endif /* ACE_OS_INCLUDE_OS_STDIO_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?