Примерная структура вот такая
- Код: Выделить всё
#Compile Exe
#Dim All
Type struct_1
v1 As struct_1 Ptr
v2 As WString * 256
v3 As Long
End Type
Type struct_2
v1 As struct_2 Ptr
v2 As WString * 256
v3 As struct_1
End Type
Type struct_3
v1 As struct_3 Ptr
v2 As WString * 256
v3 As struct_2
End Type
Function PBMain () As Long
Local struct As struct_3
End Function