MKI_CopyW (Strings) Changed in Version 2019.1

www.CAD6.com

C++ Syntax

void

MKI_CopyW(

 LPWSTR f_pszDestin,

 const size_t f_unMaxSize,

 LPCWSTR f_pszSource1 );

 

void

MKI_CopyW(

 LPWSTR f_pszDestin,

 const size_t f_unMaxSize,

 LPCWSTR f_pszSource1,

 LPCWSTR f_pszSource2 );

 

void

MKI_CopyW(

 LPWSTR f_pszDestin,

 const size_t f_unMaxSize,

 LPCWSTR f_pszSource1,

 LPCWSTR f_pszSource2,

 LPCWSTR f_pszSource3 );

 

void

MKI_CopyW( 

 LPWSTR f_pszDestin,

 const size_t f_unMaxSize,

 LPCWSTR f_pszSource1,

 LPCWSTR f_pszSource2,

 LPCWSTR f_pszSource3,

 LPCWSTR f_pszSource4 );

 

void

MKI_CopyW(

 LPWSTR f_pszDestin,

 const size_t f_unMaxSize,

 LPCWSTR f_pszSource1,

 LPCWSTR f_pszSource2,

 LPCWSTR f_pszSource3,

 LPCWSTR f_pszSource4,

 LPCWSTR f_pszSource5 );

 

void

MKI_CopyW(

 LPWSTR f_pszDestin,

 const size_t f_unMaxSize,

 LPCWSTR f_pszSource1,

 LPCWSTR f_pszSource2,

 LPCWSTR f_pszSource3,

 LPCWSTR f_pszSource4,

 LPCWSTR f_pszSource5,

 LPCWSTR f_pszSource6 );

 

void

MKI_CopyW(

 LPWSTR f_pszDestin,

 const size_t f_unMaxSize,

 LPCWSTR f_pszSource1,

 LPCWSTR f_pszSource2,

 LPCWSTR f_pszSource3,

 LPCWSTR f_pszSource4,

 LPCWSTR f_pszSource5,

 LPCWSTR f_pszSource6,

 LPCWSTR f_pszSource7 );

 

void

MKI_CopyW(

 LPWSTR f_pszDestin,

 const size_t f_unMaxSize,

 const wchar_t f_chChar );

 

template <size_t f_unSize> void

MKI_CopyW(

 wchar_t (&f_rDestin)[f_unSize],

 ... );

 

Copies one or multiple Unicode texts to one other Unicode text.

 

Parameters

f_pszDestin / f_rDestin

[LPWSTR] Pointer to or [wchar_t[]&] Reference to the destination text.

f_unMaxSize

[const size_t] Maximum allowed length of the destination text in Unicode characters including the terminating '\0' character.

f_pszSource1

f_pszSource2

f_pszSource3

f_pszSource4

f_pszSource5

f_pszSource6

f_pszSource7

[LPCWSTR] Addresses of the source texts.

f_chChar

[wchar_t] Character to be copied.

 

Comment

It is guaranteed that the resulting text will always be terminated with a '\0' character!

 

CAD6interface 2026.0 - Copyright 2026 Malz++Kassner® GmbH