blob: fd37a96a37b2b31629da66a66f3615a8b54ae083 (
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 TPerlAppIds
{
EPerlAppCommandAbout = 1024, // start value must not be 0
EPerlAppCommandTime = 1025,
EPerlAppCommandRunFile = 1026,
EPerlAppCommandOneLiner = 1027,
EPerlAppCommandCopyright = 1028,
EPerlAppCommandAboutCopyright = 1029,
EPerlAppLast = 1099 // no comma here
};
#endif // __PerlApp_HRH__
|