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

📄 signedappuids.h

📁 《UIQ 3 The Complete Guide》书的源代码
💻 H
字号:
//
// SignedAppUids.h - The UIDs used in the app
//
// Copyright (C) UIQ Technology AB, 2007
//
// This material is provided "as is" without any warranty to its performance or functionality. 
// In no event shall UIQ Technology be liable for any damages whatsoever arising out of the
// use or inabilty to use this material. 
//

#ifndef __SIGNEDAPPUIDS_H__
#define __SIGNEDAPPUIDS_H__

//////////////////////////////////////////////////////////////////////////////
// The application Uid here MUST match UID3 defined in the MMP file 
// This is UIQ is allocated by Symbian Signed and cannot be re-used in other projects
const TUid KAppSpecificUid={0x20000462};

// internal secondary id, must be unique amongst this applications views
// Since our application wants to support flip closed on P990 devices we must have
// a view with UID value '1' as that is what we defined in the Loc file. 
const TUid KUidListView={0x00000001};
const TUid KUidDetailsView={0x00000002};

// views within applications are fully identified by the app Uid and secondary view id
#define KViewIdListView TVwsViewId(KAppSpecificUid,KUidListView)
#define KViewIdDetailsView TVwsViewId(KAppSpecificUid,KUidDetailsView)

#endif // __SIGNEDAPPUIDS_H__

⌨️ 快捷键说明

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