Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

80 lines
2.2 KiB

  1. /*++
  2. Copyright (c) Microsoft Corporation. All rights resereved.
  3. Module Name:
  4. acmsg.mc
  5. Abstract:
  6. Contains message definitions for event logging.
  7. Notes:
  8. DO NOT change the order of the MessageIds.
  9. The event log service uses these numbers to determine which strings
  10. to pull from the library. If a later version of the library is installed
  11. and the messages are ordered differently, previous event log entries
  12. will be incorrect.
  13. History:
  14. 02/04/03 rparsons Created
  15. --*/
  16. //
  17. // Values are 32 bit values layed out as follows:
  18. //
  19. // 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  20. // 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
  21. // +---+-+-+-----------------------+-------------------------------+
  22. // |Sev|C|R| Facility | Code |
  23. // +---+-+-+-----------------------+-------------------------------+
  24. //
  25. // where
  26. //
  27. // Sev - is the severity code
  28. //
  29. // 00 - Success
  30. // 01 - Informational
  31. // 10 - Warning
  32. // 11 - Error
  33. //
  34. // C - is the Customer code flag
  35. //
  36. // R - is a reserved bit
  37. //
  38. // Facility - is the facility code
  39. //
  40. // Code - is the facility's status code
  41. //
  42. //
  43. // Define the facility codes
  44. //
  45. //
  46. // Define the severity codes
  47. //
  48. #define STATUS_SEVERITY_WARNING 0x2
  49. #define STATUS_SEVERITY_SUCCESS 0x0
  50. #define STATUS_SEVERITY_INFORMATIONAL 0x1
  51. #define STATUS_SEVERITY_ERROR 0x3
  52. //
  53. // MessageId: ID_SQL_PORTS_DISABLED
  54. //
  55. // MessageText:
  56. //
  57. // The version of Microsoft SQL Server 2000 or Microsoft SQL Server 2000 Desktop
  58. // Engine (MSDE) you are running has known security vulnerabilities when used
  59. // in conjunction with Microsoft Windows Server 2003. To reduce virus and worm
  60. // attacks, the TCP/IP and UDP network ports of Microsoft SQL Server 2000 or
  61. // Microsoft MSDE are disabled. Please install a patch or upgrade your service
  62. // pack for Microsoft SQL Server 2000 or Microsoft MSDE from
  63. // http://www.microsoft.com/sql/downloads/default.asp
  64. //
  65. #define ID_SQL_PORTS_DISABLED ((DWORD)0x40000001L)