NeuralStunner

VB6 Type Thing

Aug 25th, 2011
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ' Type Def
  2.  
  3. Type ItsAThing
  4.     PartThing As Long
  5. End Type
  6.  
  7. Type AnotherThing
  8.     NumberThing As Single
  9.     LongThing As Long
  10.     StringThing As String * 64
  11.     ByteThing(32) As Byte
  12.     InnerThing As ItsAThing
  13. End Type
  14.  
  15. '
Advertisement
Add Comment
Please, Sign In to add comment