Hi, how i do to compile FWPPC .prg with MultThread functions
StartThread
ThreadSleep
KillAllThreads
Mutex functions ....
Thks.
Hi, how i do to compile FWPPC .prg with MultThread functions
StartThread
ThreadSleep
KillAllThreads
Mutex functions ....
Thks.
Rodrigo,
You can use Windows API multithreading functions from C level, not from PRG level.
Please review many examples provided in these forums that use #pragma BEGINDUMP ... #pragma ENDDUMP to see how to implement calls to the Windows API functions using the C language.
Rodrigo,
Here you have the documentation for threads:
Using the Windows API: ( CreateThread() )
http://msdn2.microsoft.com/en-us/library/ms682453(VS.85).aspx
Without using the Windows API:
Thks Antonio!!