Buchempfehlung
MySQL kurz & gut
MySQL kurz & gut
Das preiswerte Taschen- buch stellt MySQL-rele- vante Inhalte systematisch und knapp dar, sodass es sich optimal zum Nach- schlagen beim Pro- grammieren eignet. [Mehr Infos...]
FreeBASIC-Chat
Es sind Benutzer im FreeBASIC-Chat online.
(Stand:  )
FreeBASIC bei Twitter
Twitter FreeBASIC-Nachrichten jetzt auch über Twitter erhalten. Follow us!

fb:porticula NoPaste

Info
Info / Hilfe
Liste
Übersicht / Liste
Neu
Datei hochladen
Suche
Quellcode suchen
Download
Dateidownload

Compilierfehler mit THREADCALL (zumindest unter Linux)

Uploader:Redakteurnemored
Datum/Zeit:20.02.2013 23:43:57

declare sub startRolling(mutex as any ptr, x as integer, y as integer, length as integer, _
                 duration as integer = 20, maxValue as integer = 6)

sub test
  dim as any ptr mutex = mutexcreate, thread
  thread = threadcall startRolling(mutex, 100, 100, 70)
  threadwait thread
  mutexdestroy mutex
end sub

sub startRolling(mutex as any ptr, x as integer, y as integer, length as integer, _
                 duration as integer = 20, maxValue as integer = 6)
  mutexlock mutex
  line (x, y)-step(length, length), 0, b
  line (x, y)-step(length, length), 0, b
  mutexunlock mutex
  sleep 100, 1
end sub