PszAlloc Function |
|
Namespace: XSharp.RT
|
The PSZ type is included in the X# language and runtime for compatibility only.
In most cases the type can and should be replaced with normal strings. If you need to interface with Win32 API functions that expect an ansi string, there is often also an alternative with a unicode string. We recommend to use that alternative when possible. |
1LOCAL pszString AS PSZ 2LOCAL pszOrigString AS PSZ 3pszOrigString := "Cavo tree" 4pszString := PszAlloc(pszOrigString)