www.pudn.com > QHelloWorld.rar > HelloWorld.hrh


// HelloWorld.hrh 
// 
// © Symbian Software Ltd 2005. All rights reserved. 
// 
 
// This file defines the command IDs that are shared by both the C++ code and 
// the resource definition. This file should be #included in both the  
// application's resource file and header file. 
 
#ifndef HELLOWORLD_HRH 
#define HELLOWORLD_HRH 
 
/** 
Identifies the value for the commands in the application. 
Commands shall first start on 0x1000. 
Values before 0x1000 is reserved for commands in the framework. 
*/ 
enum THelloWorldCommand 
	{ 
	EHelloWorldInfoPrint1Cmd = 0x1000, 
	EHelloWorldInfoPrint2Cmd, 
	EHelloWorldInfoPrint3Cmd 
	}; 
 
/** 
Unique controls in view. 
*/ 
enum THelloWorldControl 
	{ 
	EHelloWorldViewPage = 1, 
	EHelloWorldLabelCtrl 
	}; 
 
#endif // HELLOWORLD_HRH