System.WideStrUtils.WStrCat

De RAD Studio API Documentation
Aller à : navigation, rechercher

Delphi

function WStrCat(Dest: PWideChar; const Source: PWideChar): PWideChar;

C++

extern DELPHI_PACKAGE System::WideChar * __fastcall WStrCat(System::WideChar * Dest, const System::WideChar * Source);

Propriétés

Type Visibilité  Source Unité  Parent
function public
System.WideStrUtils.pas
System.WideStrUtils.hpp
System.WideStrUtils System.WideStrUtils

Description

Ajoute un PWideChar à un autre PWideChar.

Utilisez WStrCat pour concaténer Source à la fin de Dest. WStrCat n'effectue aucun contrôle de longueur. Le tampon de destination doit pouvoir stocker au moins WStrLen(Dest) + WStrLen(Source) + 1 caractères.

Voir aussi