How to do this in pb ?
Posted: Thu Mar 02, 2006 8:08 am
Code: Select all
Type MY_TYPE
Field Nothing
End Type
Function MyFunc.MY_TYPE(stuff$)
End Function
http://www.purebasic.com
https://www.purebasic.fr/english/
Code: Select all
Type MY_TYPE
Field Nothing
End Type
Function MyFunc.MY_TYPE(stuff$)
End Function
Code: Select all
Structure MY_TYPE
EndStructure
Procedure.l MyFunc(stuff$)
ProcedureReturn a.MY_TYPE
EndProcedure
*var.MY_TYPE = MyFunc("test")