?? soundmixerapp.h
字號:
/*
* =================================================================
* Name : SoundMixerApp.h
* Part of : SoundMixer
* Created : 03/30/2006 by Forum Nokia
* Description:
* This is the project specification file for SoundMixer.
* Version : 2.0.0
* Copyright: Forum Nokia
* =================================================================
*/
#ifndef SOUNDMIXERAPP_H
#define SOUNDMIXERAPP_H
#include <aknapp.h>
#ifdef __SERIES60_30__
// For S60 3rd, use an UID from unprotected range (required for self-signing)
const TUid KUidSoundMixer = { 0xE01FF1C6 };
#else
// For S60 1st/2nd
const TUid KUidSoundMixer = { 0x101FF1C6 };
#endif
class CSoundMixerApp : public CAknApplication
{
public: // Functions from base classes
private:
/**
* From CApaApplication, creates CSoundMixerDocument document object.
* @return A pointer to the created document object.
*/
CApaDocument* CreateDocumentL();
/**
* From CApaApplication, returns application's UID (KUidSoundMixer).
* @return The value of KUidSoundMixer.
*/
TUid AppDllUid() const;
};
#endif
// End of File
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -