| opNone = &H0 | 0 | |
| opPrint = &H1 | 1 | Print operator privilege. |
| opComm = &H2 | 2 | Communications operator privilege. |
| opServer = &H4 | 4 | Server operator privilege. |
| opAccounts = &H8 | 8 | Accounts operator privilege. |
'OperatorPrivileges - begin Public Const opNone = &H0 Public Const opPrint = &H1 'Print operator privilege. Public Const opComm = &H2 'Communications operator privilege. Public Const opServer = &H4 'Server operator privilege. Public Const opAccounts = &H8 'Accounts operator privilege. 'OperatorPrivileges - end
'OperatorPrivileges - begin Public Const opNone As Long = &H0 Public Const opPrint As Long = &H1 'Print operator privilege. Public Const opComm As Long = &H2 'Communications operator privilege. Public Const opServer As Long = &H4 'Server operator privilege. Public Const opAccounts As Long = &H8 'Accounts operator privilege. 'OperatorPrivileges - end
Public Enum OperatorPrivileges opNone = &H0 opPrint = &H1 'Print operator privilege. opComm = &H2 'Communications operator privilege. opServer = &H4 'Server operator privilege. opAccounts = &H8 'Accounts operator privilege. End Enum 'OperatorPrivileges
//OperatorPrivileges - begin var opNone = 0x0; var opPrint = 0x1; //Print operator privilege. var opComm = 0x2; //Communications operator privilege. var opServer = 0x4; //Server operator privilege. var opAccounts = 0x8; //Accounts operator privilege. //OperatorPrivileges - end
// OperatorPrivileges
typedef [helpcontext(0x20036), helpstring("The user's operator privileges.")]
enum OperatorPrivileges{
[helpcontext(0x20036)]
opNone = 0x0,
[helpcontext(0x20036), helpstring("Print operator privilege.")]
opPrint = 0x1,
[helpcontext(0x20036), helpstring("Communications operator privilege.")]
opComm = 0x2,
[helpcontext(0x20036), helpstring("Server operator privilege.")]
opServer = 0x4,
[helpcontext(0x20036), helpstring("Accounts operator privilege.")]
opAccounts = 0x8
} OperatorPrivileges;