JCL Help:StrCopyW
From Project JEDI Wiki
Jump to navigationJump to searchJCL Help: StrCopyW Function
Search in JCL Help
Search in all projects
Summary
Copies the source string into the destination string.
Pascal
function StrCopyW(Dest: PWideChar; const Source: PWideChar): PWideChar;
Parameters
Parameters | Description |
Dest: PWideChar | Pointer to a buffer that receives a copy of the source string. The buffer have enough room to hold StrLenW(Source) + 1 characters. |
const Source: PWideChar | The string to copy. |
Return Value
Pointer to the Dest string.
Description
StrCopyW copies the source string into the destination string and returns a pointer to the destination string. Dest must have been preallocated with enough room to hold a copy of the source string (it must be at least StrLenW(Source) + 1 characters in length).
See Also
About
Unit
Donator
Mike Lischke
Contribute to this help topic
This documentation wiki is based on the collaborative effort of Project JEDI users. Your edits are welcome in order to improve documentation quality: edit this page