Code: Select all
Thread = CreateThread(@Proc(), 0, 1); flag=1 will pause the thread from the beginning
;...
;do stuff
;...
ResumeThread(Thread); now lets start that thread
Code: Select all
CreateThread(@Proc(), Param=0, Flag=0)
nco2k
Code: Select all
Thread = CreateThread(@Proc(), 0, 1); flag=1 will pause the thread from the beginning
;...
;do stuff
;...
ResumeThread(Thread); now lets start that thread
Code: Select all
CreateThread(@Proc(), Param=0, Flag=0)