home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 May / PCFMay2001.iso / Xenon / C++ / FreeCommandLineTools.exe / Include / clusmsg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-01-31  |  1.5 KB  |  82 lines

  1. /*++
  2.  
  3. Copyright (c) 1991-1996  Microsoft Corporation
  4.  
  5. Module Name:
  6.  
  7.     clusmsg.h
  8.  
  9. Abstract:
  10.  
  11.     This file contains the message definitions for the cluster service.
  12.  
  13. Author:
  14.  
  15.     davidp 19-Sep-1996
  16.  
  17. Revision History:
  18.  
  19. Notes:
  20.  
  21.  
  22. --*/
  23.  
  24.  
  25.  
  26. #ifndef _CLUSMSG_H_
  27. #pragma option push -b -a8 -pc -A- /*P_O_Push*/
  28. #define _CLUSMSG_H_
  29.  
  30. /*
  31.  5034 is NOT free
  32.  The next starting point is 5090 (5035 TO 5089 is used)
  33. */
  34. //
  35. //  Values are 32 bit values layed out as follows:
  36. //
  37. //   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  38. //   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
  39. //  +---+-+-+-----------------------+-------------------------------+
  40. //  |Sev|C|R|     Facility          |               Code            |
  41. //  +---+-+-+-----------------------+-------------------------------+
  42. //
  43. //  where
  44. //
  45. //      Sev - is the severity code
  46. //
  47. //          00 - Success
  48. //          01 - Informational
  49. //          10 - Warning
  50. //          11 - Error
  51. //
  52. //      C - is the Customer code flag
  53. //
  54. //      R - is a reserved bit
  55. //
  56. //      Facility - is the facility code
  57. //
  58. //      Code - is the facility's status code
  59. //
  60. //
  61. // Define the facility codes
  62. //
  63.  
  64.  
  65. //
  66. // Define the severity codes
  67. //
  68.  
  69.  
  70. //
  71. // MessageId: CLUSTER_BUILD_PLACEHOLDER
  72. //
  73. // MessageText:
  74. //
  75. //  With no messages, build will continously try to rebuild clusmsg.h which causes
  76. //  all sorts of things to get rebuilt.
  77. //
  78. #define CLUSTER_BUILD_PLACEHOLDER        59999L
  79.  
  80. #pragma option pop /*P_O_Pop*/
  81. #endif // _CLUSMSG_H_
  82.