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.
mitlib.pub/MITLIB/Include/PageSecurity.h

35 lines
1.1 KiB
C

// Start =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
// General information section.
// =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
// $Author:: LAMHY $ User who last changed the file
// $Date:: 11 Jun 2004 18:11:56 $ 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__