q/lib/thread/thread_windows.q
2025-02-15 18:23:33 +01:00

7 lines
No EOL
178 B
Text

extern kernel32 {
CreateThread(attributes Int, stackSize Int, address *Any, parameter Int) -> Int
}
create(func *Any) -> Int {
return kernel32.CreateThread(0, 4096, func, 0)
}