⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 daxian c618_ringer support.h

📁 开发Brew铃声程序时
💻 H
字号:
/*
** ============================================================================
**
** Project: 
**     U3EC
**
** File:
**     SKTTExtension.h
**
** Description:
**     @DesciptionAboutThisFileHere
**
** Copyright (c) 2000 SK Teletech, Co. All Rights Reserved.
**
** History:
**
** When       who        what, where, why
** ---------- --------   ------------------------------------------------------
** 2003-09-16 undersea   Created.
**
** ============================================================================
*/

#ifndef _SKTTEXTENSION_H_
#define _SKTTEXTENSION_H_

#ifdef __cplusplus
extern "C" {
#endif
    
/* 
**----------------------------------------------------------------------------
**  Includes
**----------------------------------------------------------------------------
    */
    
    /*
    **----------------------------------------------------------------------------
    **  Definitions
    **----------------------------------------------------------------------------
    */
// Define the new ringer formats, say 1 new ringer format is being added
#define AEE_SOUNDPLAYER_FILE_MMF        (AEE_SOUNDPLAYER_FILE_MP3+1)

// Undef and redefine the new value for AEE_SOUNDPLAYER_FILE_LAST based
// on the last format added (in this case it is MMF)
#undef AEE_SOUNDPLAYER_FILE_LAST       
#define AEE_SOUNDPLAYER_FILE_LAST       (AEE_SOUNDPLAYER_FILE_MP3+2)

// Define the MIME type for the new ringer format
#define MMF_MIME                        MT_AUDIO_MMF

// Define the extension for the new ringer format
#define MMF_EXT                         ".mmf"

    /*
    **----------------------------------------------------------------------------
    **  Type Definitions
    **----------------------------------------------------------------------------
    */
    
    /*
    **----------------------------------------------------------------------------
    **  General Declarations
    **----------------------------------------------------------------------------
    */
    
    /*
    **---------------------------------------------------------------------------
    **  Variable Declarations
    **---------------------------------------------------------------------------
    */
    
    /*
    **---------------------------------------------------------------------------
    **  Function(external use only) Declarations
    **---------------------------------------------------------------------------
    */
    
#ifdef __cplusplus
}  /* extern "C" */
#endif

#endif  /* _SKTTEXTENSION_H_ */

⌨️ 快捷键说明

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