blob: 3a510d4f817e2c54368712a8db0031a30169a6e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* Copyright (c) 2004-2005 Nokia. All rights reserved. */
/* The PerlApp application is licensed under the same terms as Perl itself. */
#ifndef __PerlApp_HRH__
#define __PerlApp_HRH__
enum TPerlIds
{
EPerlAppCommandAbout = 1024, // start value must not be 0
EPerlAppCommandTime = 1025,
EPerlAppCommandRunFile = 1026,
EPerlAppCommandOneLiner = 1027,
EPerlAppCommandCopyright = 1028,
EPerlAppCommandAboutCopyright = 1029,
EPerlAppTextQueryInputField = 1030 // no comma here
};
#endif // __PerlApp_HRH__
|