CharLowerBuff (Compact 2013)

3/28/2014

This function converts uppercase characters in a buffer to lowercase characters in place.

Syntax

DWORD CharLowerBuff(
  LPTSTR lpsz,
  DWORD cchLength
);

Parameters

  • lpsz
    [in] Pointer to a buffer that contains one or more characters to process.
  • cchLength
    [in] The size, in characters, of the buffer pointed to by lpsz. The function examines the number of bytes or characters indicated by cchLength, even if one or more characters are null characters.

Return Value

The number of characters processed indicates success. For example, if CharLowerBuff("Acme of Operating Systems", 10) succeeds, the return value is 10.

Remarks

Windows Embedded Compact does not have language drivers.

Windows Embedded Compact supports only the Unicode version of this function.

Requirements

Header

winbase.h

Library

Coreloc.lib

See Also

Reference

String Functions
CharUpperBuff