Skip to content
Xusinboy Bekchanov edited this page Nov 6, 2023 · 5 revisions

WGet Function

Dereferences a WString pointer to WString.

Syntax

Function WGet(ByRef subject As WString Ptr) ByRef As WString

Parameters

Part Type Description
subject WString Required. WString Pointer to dereference. If the value is NULL, zero-length string ("") is returned.

Return Value

WString

Example

#include "mff/UString.bi"

Dim p As WString Ptr

Print WGet(p)

p = Allocate(SizeOf(WString) * 5)

*p = "Good"

Print WGet(p)

Delete p

Sleep

See also

Clone this wiki locally