push edxmov [ebp-60],ebxmov [ebp-68],edimov [ebp-50],ebxmov [ebp-58],edimov [ebp-40],ebxmov [ebp-48],edimov [ebp-70],ecxmov [ebp-78],4008call dword ptr ds:[<&MSVBVM60.#667>]
Option Explicit Private Type environstruct k As Long '8 null As Long '0 envstr As Long 'StrPtr(str)End Type 'MSVBVM60Private Declare Function rtcEnvironBstr Lib "MSVBVM60" (ByRef struct As environstruct) As String Private Sub Form_Load() Dim es As environstruct With es .k = 8 .envstr = StrPtr("TMP") End With MsgBox StrConv(rtcEnvironBstr(es), vbFromUnicode)End Sub