This variable doesn't have a 'Structure'
Can anyone help? I've put below the relevant snippets from the code.
Code:
Structure at the top of the file
Code: Select all
Structure threadInfo
  dir.l
  folder.s  
EndStructureCode: Select all
myThreadData.threadInfo
myThreadData\dir=num(f)
myThreadData\folder=myPath$
myThread(f) = CreateThread(@ThreadProcess(), @myThreadData ) Code: Select all
Procedure ThreadProcess(*a.threadInfo)
 passedNum=a\dir
 myPath$=a\folder
...
EndProcedure[/code]



