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.

62 lines
1.4 KiB

  1. #ifndef MESSAGE_INCLUDED
  2. #define MESSAGE_INCLUDED
  3. /*
  4. To change or add messages mysqld writes to the Windows error log, run
  5. mc.exe message.mc
  6. and checkin generated messages.h, messages.rc and msg000001.bin under the
  7. source control.
  8. mc.exe can be installed with Windows SDK, some Visual Studio distributions
  9. do not include it.
  10. */
  11. //
  12. // Values are 32 bit values layed out as follows:
  13. //
  14. // 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  15. // 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
  16. // +---+-+-+-----------------------+-------------------------------+
  17. // |Sev|C|R| Facility | Code |
  18. // +---+-+-+-----------------------+-------------------------------+
  19. //
  20. // where
  21. //
  22. // Sev - is the severity code
  23. //
  24. // 00 - Success
  25. // 01 - Informational
  26. // 10 - Warning
  27. // 11 - Error
  28. //
  29. // C - is the Customer code flag
  30. //
  31. // R - is a reserved bit
  32. //
  33. // Facility - is the facility code
  34. //
  35. // Code - is the facility's status code
  36. //
  37. //
  38. // Define the facility codes
  39. //
  40. //
  41. // Define the severity codes
  42. //
  43. //
  44. // MessageId: MSG_DEFAULT
  45. //
  46. // MessageText:
  47. //
  48. // %1For more information, see Help and Support Center at http://www.mysql.com.
  49. //
  50. //
  51. //
  52. #define MSG_DEFAULT 0xC0000064L
  53. #endif /* MESSAGE_INCLUDED */