You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.0 KiB
C
36 lines
1.0 KiB
C
// Start =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
|
|
// General information section.
|
|
// =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
|
|
// $Author:yongkiang$ User who last changed the file
|
|
// $Date:1/2/2013 12:17:13 PM$ Date and time of last check in
|
|
// $Revision:1.0$ Visual SourceSafe version number
|
|
// $Workfile:: PageSecurity.h $ Filename
|
|
// End =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
|
|
#if !defined __SECURITYS_H__
|
|
#define __SECURITYS_H__
|
|
|
|
enum SECURITY_ITEM
|
|
{
|
|
Sec_JobPage_All,
|
|
Sec_MaintenancePage_All,
|
|
Sec_RecipePage_All,
|
|
Sec_SetupPage_All,
|
|
Sec_DatalogPage_All,
|
|
Sec_AlarmsPage_All,
|
|
Sec_HelpPage_All,
|
|
NUM_SECURITY_ITEM,
|
|
};
|
|
|
|
const CString SECURITY_ITEM_NAME[NUM_SECURITY_ITEM] =
|
|
{
|
|
"Job Page",
|
|
"Maintenance Page",
|
|
"Recipe Page",
|
|
"Setup Page",
|
|
"Datalog Page",
|
|
"Alarms Page",
|
|
"Help Page",
|
|
};
|
|
|
|
#endif // !defined __SECURITYS_H__
|