//
//  Values are 32 bit values layed out as follows:
//
//   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
//   1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
//  +---+-+-+-----------------------+-------------------------------+
//  |Sev|C|R|     Facility          |               Code            |
//  +---+-+-+-----------------------+-------------------------------+
//
//  where
//
//      Sev - is the severity code
//
//          00 - Success
//          01 - Informational
//          10 - Warning
//          11 - Error
//
//      C - is the Customer code flag
//
//      R - is a reserved bit
//
//      Facility - is the facility code
//
//      Code - is the facility's status code
//
//
// Define the facility codes
//


//
// Define the severity codes
//


//
// MessageId: IDM_VOID
//
// MessageText:
//
//  %1
//
#define IDM_VOID                         0x00000001L

//
// MessageId: IDM_WARNING_ADS
//
// MessageText:
//
//  The ADS interface returned an unexpected error at "%1".
//  The ADS error string is: %2.
//  The ADS provider is: %3.
//  The result code is given below.
//
#define IDM_WARNING_ADS                  0x00000002L

//
// MessageId: IDM_WARNING_API
//
// MessageText:
//
//  A system API returned an unexpected error at "%1".
//  The system error string is: %2
//  The result code is given below.
//
#define IDM_WARNING_API                  0x00000003L

//
// MessageId: IDM_WARNING_MPR
//
// MessageText:
//
//  The MPR interface returned an unexpected error at "%1".
//  The MPR error string is: %2
//  The result code is given below.
//
#define IDM_WARNING_MPR                  0x00000004L

//
// MessageId: IDM_INSTALLED
//
// MessageText:
//
//  The %1 service was installed.
//
#define IDM_INSTALLED                    0x00000005L

//
// MessageId: IDM_UNINSTALLED
//
// MessageText:
//
//  The %1 service was uninstalled.
//
#define IDM_UNINSTALLED                  0x00000006L

//
// MessageId: IDM_STARTED
//
// MessageText:
//
//  The %1 service started.
//
#define IDM_STARTED                      0x00000007L

//
// MessageId: IDM_STOPPED
//
// MessageText:
//
//  The %1 service stopped.
//
#define IDM_STOPPED                      0x00000008L

//
// MessageId: IDM_TIME_EMPTY
//
// MessageText:
//
//  The time server group '%1' is empty.
//
#define IDM_TIME_EMPTY                   0x00000009L

//
// MessageId: IDM_TIME_RULES
//
// MessageText:
//
//  Time restriction rules were applied to user '%1'.
//
#define IDM_TIME_RULES                   0x0000000AL

//
// MessageId: IDM_DUPLICATE_EMPTY
//
// MessageText:
//
//  The duplicate server group '%1' is empty.
//
#define IDM_DUPLICATE_EMPTY              0x0000000BL

//
// MessageId: IDM_DUPLICATE_RULES
//
// MessageText:
//
//  Connection restriction rules were applied to user '%1'.
//
#define IDM_DUPLICATE_RULES              0x0000000CL

//
// MessageId: IDM_MPR_DISCONNECT
//
// MessageText:
//
//  User '%1' was disconnected.
//
#define IDM_MPR_DISCONNECT               0x0000000DL

//
// MessageId: IDM_ADS_GROUPMEMBERS
//
// MessageText:
//
//  The '%1' group contains these names: %2
//
#define IDM_ADS_GROUPMEMBERS             0x0000000EL

//
// MessageId: IDM_ADS_NAMETOGROUP
//
// MessageText:
//
//  Added '%1' to the '%2' security group.
//
#define IDM_ADS_NAMETOGROUP              0x0000000FL


