📄 rvansi.h
字号:
/************************************************************************
File Name : rvansi.h
Description :
************************************************************************
Copyright (c) 2001 RADVISION Inc. and RADVISION Ltd.
************************************************************************
NOTICE:
This document contains information that is confidential and proprietary
to RADVISION Inc. and RADVISION Ltd.. No part of this document may be
reproduced in any form whatsoever without written prior approval by
RADVISION Inc. or RADVISION Ltd..
RADVISION Inc. and RADVISION Ltd. reserve the right to revise this
publication and make changes without obligation to notify any person of
such revisions or changes.
***********************************************************************/
#if !defined(RV_ANSI_H)
#define RV_ANSI_H
#ifdef __cplusplus
extern "C" {
#endif
#ifndef RV_ANSI_USECUSTOMSTRINGFORMATTING /* Never set */
#include <stdio.h>
#include <stdarg.h>
/* Use a supplied ANSI library */
/* Formatted Output */
#define RvSprintf sprintf
#define RvVsprintf vsprintf
/* Formatted Input */
#define RvSscanf sscanf
#else
/* Use custom string formatting */
/* Formatted Output */
RVCOREAPI RvInt RVCALLCONV RvSprintf(RvChar* s, const RvChar* format);
RVCOREAPI RvInt RVCALLCONV RvVsprintf(RvChar* s, const RvChar* format, va_list arg);
/* Formatted Input */
RVCOREAPI int RVCALLCONV RvScanf(const char* format, ...);
#endif
#ifdef __cplusplus
}
#endif
#endif /* Include guard */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -