RtlFormatMessage.3w

Langue: en

Version: Jun 2009 (debian - 07/07/09)

Section: 3 (Bibliothèques de fonctions)

NAME

RtlFormatMessage (NTDLL.@)

SYNOPSIS

NTSTATUS RtlFormatMessage
 (
  LPWSTR   Message,
  UCHAR    MaxWidth,
  BOOLEAN  IgnoreInserts,
  BOOLEAN  Ansi,
  BOOLEAN  ArgumentIsArray,
  va_list* Arguments,
  LPWSTR   Buffer,
  ULONG    BufferSize
 )

DESCRIPTION

Formats a message (similar to sprintf).

PARAMS

Message [In] Message to format.

MaxWidth [In] Maximum width in characters of each output line.

IgnoreInserts [In] Whether to copy the message without processing inserts.

Ansi [In] Whether Arguments may have ANSI strings.

ArgumentsIsArray [In] Whether Arguments is actually an array rather than a va_list *.

Buffer [Out] Buffer to store processed message in.

BufferSize [In] Size of Buffer (in bytes?).

RETURNS

NTSTATUS code.

IMPLEMENTATION

Defined in "winternl.h".

Implemented in "dlls/ntdll/resource.c".

Debug channel "resource".