📄 jdd_audioapi.h.svn-base
字号:
/***************************************************************************
*
* File Name : jdd_audioapi.h
*
* IMPORTANT NOTICE
*
* Please note that any and all title and/or intellectual property rights
* in and to this Software or any part of this (including without limitation
* any images, photographs, animations, video, audio, music, text and/or
* "applets," incorporated into the Software), herein mentioned to as
* "Software", the accompanying printed materials, and any copies of the
* Software, are owned by Jataayu Software (P) Ltd., Bangalore ("Jataayu")
* or Jataayu's suppliers as the case may be. The Software is protected by
* copyright, including without limitation by applicable copyright laws,
* international treaty provisions, other intellectual property laws and
* applicable laws in the country in which the Software is being used.
* You shall not modify, adapt or translate the Software, without prior
* express written consent from Jataayu. You shall not reverse engineer,
* decompile, disassemble or otherwise alter the Software, except and
* only to the extent that such activity is expressly permitted by
* applicable law notwithstanding this limitation. Unauthorized reproduction
* or redistribution of this program or any portion of it may result in severe
* civil and criminal penalties and will be prosecuted to the maximum extent
* possible under the law. Jataayu reserves all rights not expressly granted.
*
* THIS SOFTWARE IS PROVIDED TO YOU "AS IS" WITHOUT WARRANTY OF ANY KIND
* AND ANY AND ALL REPRESENTATION
*
***************************************************************************
*
*
* File Description
* ----------------
*
* Purpose : This file contains device dependent Timer
* APIs for Win32 platform.
*
*
* Created By :
* Created Date :
*
* Current Revision :
*
*
***************************************************************************
*
*
* Revision Details
* ----------------
*
* 1. Modified By, Modified Date, Purpose
* 2. Modified By, Modified Date, Purpose
* 3. Modified By, Modified Date, Purpose
*
*
*
***************************************************************************/
#ifndef JDD_AUDIO_API_H
#define JDD_AUDIO_API_H
#ifdef __cplusplus
extern "C"
{
#endif
typedef void* JDD_AUDIO ;
typedef struct _jc_audio_info_
{
JC_CHAR * psAudioFileName ;
JC_INT8 * pAudioBuff ;
JC_UINT32 uiAudioLen ;
JC_BOOLEAN bIsFileInput ;
} JC_AUDIO_INFO ;
JC_RETCODE jdd_AudioInitialize (JDD_AUDIO *pAudioHandle);
JC_RETCODE jdd_AudioDeInitialize (JDD_AUDIO AudioHandle);
JC_RETCODE jdd_AudioPlay (JDD_AUDIO AudioHandle, JC_AUDIO_INFO *pAudioInfo) ;
JC_RETCODE jdd_AudioStop (JDD_AUDIO AudioHandle);
JC_RETCODE jdd_AudioPause (JDD_AUDIO AudioHandle) ;
JC_RETCODE jdd_AudioResume (JDD_AUDIO AudioHandle) ;
#ifdef __cplusplus
}
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -