|
SysAllocStringLen
pch, cch)
OLECHAR FAR* pch
unsigned int cch
Allocates a new string, copies cch characters from the passed string into it, and then appends a null character.
Parameter
pch
A pointer to cch characters to copy, or NULL to keep the string uninitialized.
cch
Number of characters to copy from pch*. A null character is placed afterwards, making a total of cch+1 characters allocated.
Return Value
Points to a copy of the string or NULL, if insufficient memory exists.
Comments
If pch is NULL, a string of the requested length is allocated, but not initialized.
The string pch can contain embedded null characters and need not end with a null. The
returned string should later be freed with SysFreeString.
Related LinksSoftware for Delphi and C++ Builder developers Software for Visual Studio .NET developers Software for Visual Basic 6 developers Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps Win32 Programmer's Reference (win32.hlp) Win32 Multimedia Programmer's Reference (mmedia.hlp) Microsoft Windows Pen API Programmer's Reference (penapi.hlp) Microsoft Windows Sockets 2 Reference (sock2.hlp) Microsoft Windows Telephony API (TAPI) Programmer's Reference (sock2.hlp) Unix Manual Pages
|