Source code of Windows XP (NT5)
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.

64 lines
946 B

  1. /*++
  2. Copyright (c) 1993 Microsoft Corporation
  3. Module Name:
  4. spmsg.h
  5. Abstract:
  6. Public header file for text message functions in text setup.
  7. Author:
  8. Ted Miller (tedm) 29-July-1993
  9. Revision History:
  10. --*/
  11. #ifndef _SPMSG_DEFN_
  12. #define _SPMSG_DEFN_
  13. VOID
  14. vSpFormatMessage(
  15. OUT PVOID LargeBuffer,
  16. IN ULONG BufferSize,
  17. IN ULONG MessageId,
  18. OUT PULONG ReturnLength, OPTIONAL
  19. IN va_list *arglist
  20. );
  21. VOID
  22. SpFormatMessage(
  23. OUT PVOID LargeBuffer,
  24. IN ULONG BufferSize,
  25. IN ULONG MessageId,
  26. ...
  27. );
  28. VOID
  29. vSpFormatMessageText(
  30. OUT PVOID LargeBuffer,
  31. IN ULONG BufferSize,
  32. IN PWSTR MessageText,
  33. OUT PULONG ReturnLength, OPTIONAL
  34. IN va_list *arglist
  35. );
  36. VOID
  37. SpFormatMessageText(
  38. OUT PVOID LargeBuffer,
  39. IN ULONG BufferSize,
  40. IN PWSTR MessageText,
  41. ...
  42. );
  43. extern PVOID ResourceImageBase;
  44. #endif // ndef _SPMSG_DEFN_