📄 audiostream.pan
字号:
/*
* ============================================================================
* Name : audiostream.pan
* Part of : AudioStream Example
* Created : April 28, 2006 by Forum Nokia
* Implementation notes:
* This file contains thread panics.
* Version : 2.0
* Copyright: Nokia Corporation
* ============================================================================
*/
#ifndef __AUDIOSTREAM_PAN__
#define __AUDIOSTREAM_PAN__
#include <e32std.h>
inline void Panic(TInt aPanicCode)
{
_LIT(KApplicationName, "AudioStream");
User::Panic(KApplicationName, aPanicCode);
}
inline void PanicIfError(TInt aPanicCode)
{
if (aPanicCode != KErrNone)
{
Panic(aPanicCode);
}
}
#endif // __AUDIOSTREAM_PAN__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -