X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/34138703c3997ce676a1e713d9ff9eb020640da7..520e470fdd0daef09c77938db642e4583933c90d:/src/stubs/thread.cpp?ds=inline diff --git a/src/stubs/thread.cpp b/src/stubs/thread.cpp index 36e710b5b2..c197787003 100644 --- a/src/stubs/thread.cpp +++ b/src/stubs/thread.cpp @@ -143,6 +143,18 @@ wxThreadError wxThread::Destroy() return THREAD_NO_ERROR; } +wxThreadError wxThread::Pause() +{ + // TODO + return THREAD_NO_ERROR; +} + +wxThreadError wxThread::Resume() +{ + // TODO + return THREAD_NO_ERROR; +} + void wxThread::Exit(void *status) { // TODO @@ -181,6 +193,24 @@ unsigned long wxThread::GetID() const return 0; } +wxThread *wxThread::GetThreadFromID(unsigned long id) +{ + // TODO + return NULL; +} + +bool wxThread::IsAlive() const +{ + // TODO + return FALSE; +} + +bool wxThread::IsRunning() const +{ + // TODO + return FALSE; +} + bool wxThread::IsMain() { // TODO