audscm_va_ind.h
来自「Motorola synergy audio component」· C头文件 代码 · 共 82 行
H
82 行
#ifndef AUDSCM_VA_IND_INCLUDE#define AUDSCM_VA_IND_INCLUDE/*(c) Copyright Motorola 1997, All rights reserved.Motorola Confidential ProprietaryContains confidential proprietary information of Motorola, Inc.Reverse engineering is prohibited.The copyright notice does not imply publication.*/#ifdef __cplusplus /* allow #include in a C++ file */extern "C" {#endif/*DESCRIPTION: This file defines the data structure for speech coder indicationto Audio Manager when a VoiceNote deletion is completed.*//******************************* REVISION HISTORY ****************************** Date Author Reference Number ======== ======== ================ 00-04-16 Dale Noble CR - 55011 Removed include of std_def.h replaced with suapi.h*******************************************************************************//* INCLUDES */#ifndef SUAPI_INCLUDE#include <SUAPI/suapi.h>#endif#include "td_dsp_aud_reply_buff.h"typedef struct{ AUD_DSP_REPLY_MSG_HEADER header; /* Speech Coder Manager primitive header */ UINT16 error_code; /* Error code; 0 if no error */ } AUDSCM_VA_COMPLETE_IND;typedef AUDSCM_VA_COMPLETE_IND AUDSCM_VA_ERASE_COMPLETE_IND;typedef AUDSCM_VA_COMPLETE_IND AUDSCM_VA_PLAYBACK_COMPLETE_IND;typedef AUDSCM_VA_COMPLETE_IND AUDSCM_REFORMAT_FLASH_COMPLETE_IND;typedef struct{ AUD_DSP_REPLY_MSG_HEADER header; /* Speech Coder Manager primitive header */ UINT8 warning_code; /* Warning code; 0 if no warning */ UINT8 error_code; /* Error code; 0 if no error */ } AUDSCM_VA_RECORD_COMPLETE_IND;typedef struct{ AUD_DSP_REPLY_MSG_HEADER header; /* Speech Coder Manager primitive header */ UINT16 error_code; /* Error code; 0 if no error */ UINT16 time; /* Remaining time for recording in units of seconds */} AUDSCM_VA_TIME_REMAINING_IND;#ifdef __cplusplus /* Allow #include in a C++ file. */}#endif#endif /* End Of Definitions. */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?