?? soundmixer.pan
字號(hào):
/*
* ============================================================================
* Name : SoundMixer.pan
* Part of : TaskManager
* Created : 03/30/2006 by Forum Nokia
* Description:
* This file contains thread panics.
* Version : 2.0.0
* Copyright: Nokia Corporation
* ============================================================================
*/
#ifndef __SOUNDMIXER_PAN__
#define __SOUNDMIXER_PAN__
inline void Panic(TInt aPanicCode)
{
_LIT(KApplicationName, "SoundMixer");
User::Panic(KApplicationName, aPanicCode);
}
inline void PanicIfError(TInt aPanicCode)
{
if (aPanicCode != KErrNone)
{
Panic(aPanicCode);
}
}
#endif // __SOUNDMIXER_PAN__
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -