| 1 | Local Const $sSource = "12345678"
|
|---|
| 2 | Local $p_VS_String = DllStructCreate("wchar szKey[8]" )
|
|---|
| 3 | DllStructSetData($p_VS_String,"szKey", $sSource)
|
|---|
| 4 | MsgBox(4096, "", "Expected:" & @TAB & $sSource & @CRLF & "Received:" & @TAB & DllStructGetData($p_VS_String,"szKey"))
|
|---|