StringCchPrintf_lEx function
Writes formatted data to the specified string. The size of the destination buffer is provided to the function to ensure that it does not write past the end of this buffer.
StringCchPrintf_lEx is similar to StringCchPrintfEx but includes a parameter for locale information.
Syntax
HRESULT StringCchPrintf_lEx( _Out_ LPTSTR pszDest, _In_ size_t cchDest, _Out_ LPTSTR *ppszDestEnd, _Out_opt_ size_t *pcchRemaining, _In_ DWORD dwFlags, _In_ LPCTSTR pszFormat, _In_ _locale_t locale, _In_ ... );
Parameters
- pszDest [out]
-
The destination buffer, which receives the formatted, null-terminated string created from pszFormat and its arguments.
- cchDest [in]
-
The size of the destination buffer, in characters. This value must be sufficiently large to accommodate the final formatted string plus 1 to account for the terminating null character. The maximum number of characters allowed is STRSAFE_MAX_CCH.
- ppszDestEnd [out]
-
The address of a pointer to the end of pszDest. If ppszDestEnd is non-NULL and any data is copied into the destination buffer, this points to the terminating null character at the end of the string.
- pcchRemaining [out, optional]
-
The number of unused characters in pszDest, including the terminating null character. If pcchRemaining is NULL, the count is not kept or returned.
- dwFlags [in]
-
One or more of the following values.
- pszFormat [in]
-
The format string. This string must be null-terminated. For more information, see Format Specification Syntax.
- locale [in]
-
The locale object. For more information, see _create_locale.
- ... [in]
-
The Arguments to be inserted into the pszFormat string.
Return value
This function can return one of the following values. It is strongly recommended that you use the SUCCEEDED and FAILED macros to test the return value of this function.
| Return code | Description |
|---|---|
|
There was sufficient space for the result to be copied to pszDest without truncation and the buffer is null-terminated. |
|
The value in cchDest is either 0 or larger than STRSAFE_MAX_CCH, or the destination buffer is already full. |
|
The copy operation failed due to insufficient buffer space. Depending on the value of dwFlags, the destination buffer may contain a truncated, null-terminated version of the intended result. In situations where truncation is acceptable, this may not necessarily be seen as a failure condition. |
Remarks
Behavior is undefined if the strings pointed to by pszDest, pszFormat, or any argument strings overlap.
Neither pszFormat nor pszDest should be NULL unless the STRSAFE_IGNORE_NULLS flag is specified, in which case both may be NULL. However, an error due to insufficient space may still be returned even though NULL values are ignored.
In order to use this function, you must define the following macro in your header file, before including StrSafe.h.
#define STRSAFE_LOCALE_FUNCTIONS
Requirements
|
Minimum supported client |
Windows Vista [desktop apps | Windows Store apps] |
|---|---|
|
Minimum supported server |
Windows Server 2008 [desktop apps | Windows Store apps] |
|
Header |
|
|
Unicode and ANSI names |
StringCchPrintf_lExW (Unicode) and StringCchPrintf_lExA (ANSI) |