35 lines
878 B
C
35 lines
878 B
C
/******************************************************************************
|
|
* File Name : ivDebug.h
|
|
* Description : InterSound 调试头文件
|
|
* Author : pingbu
|
|
* Date Of Creation : 2004-03-05
|
|
* Platform : Any
|
|
* Modification History :
|
|
*------------------------------------------------------------------------------
|
|
* Date Author Modifications
|
|
*------------------------------------------------------------------------------
|
|
* 2004-03-05 pingbu Created
|
|
******************************************************************************/
|
|
|
|
#ifndef IFLYTEK_VOICE__2004_03_05__DEBUG__H
|
|
#define IFLYTEK_VOICE__2004_03_05__DEBUG__H
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
/*
|
|
* 调试功能定义
|
|
*/
|
|
|
|
#define ivAssert(f) IV_ASSERT(f)
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif /* IFLYTEK_VOICE__2004_03_05__DEBUG__H */
|