X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/acd9676ebb6a4ab1837a7f818ff1a6b0c9cb9c32..c640e407d5a2ff901421a080bfc5a8af19297abb:/include/wx/thread.h diff --git a/include/wx/thread.h b/include/wx/thread.h index d4af63db35..7e575b2f1e 100644 --- a/include/wx/thread.h +++ b/include/wx/thread.h @@ -368,8 +368,12 @@ public: // Get the thread ID - a platform dependent number which uniquely // identifies a thread inside a process - unsigned long GetId() const; - +#ifdef __VMS + unsigned long long GetId() const; +#else + unsigned long GetId() const; +#endif + // called when the thread exits - in the context of this thread // // NB: this function will not be called if the thread is Kill()ed