rvassert.h

来自「h.248协议源码」· C头文件 代码 · 共 39 行

H
39
字号
/*************************************************************************
 File Name     : rvassert.h
 Creation Date : Monday, September 27, 2000
 Description   :
*************************************************************************
 Copyright (c)  2000 , RADVision, Inc. All rights reserved.
*************************************************************************
 NOTICE:
 This document contains information that is proprietary to RADVision Inc.
 No part of this publication may be reproduced in any form whatsoever
 without written prior approval by RADVision Inc.
 
 RADVision Inc. reserves the right to revise this publication and make
 changes without obligation to notify any person of such revisions or
 changes.
*************************************************************************
 $Revision: $
 $Date:   09/27/00 $
 $Author: Scott K. Eaton $
************************************************************************/
#if !defined(RVASSERT_H)
#define RVASSERT_H

#include "rvplatform.h"

#ifdef RV_DEBUG_ON

#include <assert.h>

#define	rvAssert(x) assert(x)

#else

#define	rvAssert(x) 

#endif

#endif /* Include guard */

⌨️ 快捷键说明

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