次の方法で共有


OALLogSerial (Compact 2013)

10/16/2014

This function formats strings and writes them to the serial debug output. The function implementation uses the OALLogPrintf function to format the string in a buffer on the stack. The buffer size is limited and can cause a stack overflow in some cases.

Syntax

void OALLogSerial(
  LPCWSTR format,
  ...
);

Parameters

  • format
    [in] String that contains the format-control specifications. In addition to ordinary ASCII characters, a format specification for each argument appears in this string. For more information about the format specification, see the wsprintf function.
  • ...
    [in] These parameters are developer-defined.

Return Value

None.

Requirements

Header

oal_log.h

Library

Developer Implemented

See Also

Reference

Logging Functions