sound.pan

来自「该源码主要是示范了如何使用Symbian OS中的一些音频处理类」· PAN 代码 · 共 24 行

PAN
24
字号
// Copyright (c) 2003, Nokia Mobile Phones. All rights reserved.

#ifndef __SOUND_H__
#define __SOUND_H__

// Panic Category 
_LIT(KSound, "Sound");
_LIT(KPlayerAdapter, "CPlayerAdapter");
_LIT(KRecorderAdapter, "CRecorderAdapter");
_LIT(KToneAdapter, "CToneAdapter");

// Sound application panic codes 
enum SoundPanics
	{
    // Use 200 as the base for panics so that they are well above all Epoc panic codes.
    KSoundPanicInvalidState = 200, 
    KSoundPanicBadParameter, 
    KSoundPanicInvariant,
    KSoundPanicInvalidMdaState,
    KSoundPanicUnexpectedCommand
	};

#endif    // __SOUND_H__

⌨️ 快捷键说明

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