]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/thread.h
add missing header for !wxUSE_PCH case
[wxWidgets.git] / include / wx / thread.h
index d4af63db350620da9e63286c6637b11a02da27c6..7e575b2f1e74bfaa993719fa39286a7484131f03 100644 (file)
@@ -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