ClusMsg.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:2k
- /*++
- Copyright (c) 1991-1999 Microsoft Corporation
- Module Name:
- clusmsg.h
- Abstract:
- This file contains the message definitions for the cluster service.
- Author:
- davidp 19-Sep-1996
- Revision History:
- Notes:
- --*/
- #ifndef _CLUSMSG_H_
- #define _CLUSMSG_H_
- /*
- 5034 is NOT free
- The next starting point is 5092 (5035 TO 5091 is used)
- */
- //
- // 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: ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE
- //
- // MessageText:
- //
- // An operation was attempted that is incompatible
- // with the current membership state of the node.
- //
- #define ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE 5090L
- //
- // MessageId: ERROR_CLUSTER_QUORUMLOG_NOT_FOUND
- //
- // MessageText:
- //
- // The quorum resource does not contain the quorum log.
- //
- #define ERROR_CLUSTER_QUORUMLOG_NOT_FOUND 5091L
- //
- // MessageId: CLUSTER_BUILD_PLACEHOLDER
- //
- // MessageText:
- //
- // With no messages, build will continously try to rebuild clusmsg.h which causes
- // all sorts of things to get rebuilt.
- //
- #define CLUSTER_BUILD_PLACEHOLDER 59999L
- #endif // _CLUSMSG_H_