]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/timer.cpp
Another solaris fix. :-<
[wxWidgets.git] / src / gtk1 / timer.cpp
index 36aada6e6fc9c92920245527a2b1ca33c5c45163..fb74fc13dc8bc7352e50c127c7339fe1c8773d13 100644 (file)
 #include "wx/timer.h"
 
 #include "gtk/gtk.h"
+/*
+#include "glib.h"
+*/
+
+//-----------------------------------------------------------------------------
+// global functions
+//-----------------------------------------------------------------------------
+
+/*
+static GTimer *g_timer = (GTimer*) NULL;
+
+void wxStartTimer()
+{
+    if (g_timer)
+    {
+        g_timer_rest( g_timer );
+    }
+    else
+    {
+        g_timer = g_timer_new();
+        g_timer_start( g_timer );
+    }
+}
+
+long wxGetElapsedTime( bool resetTimer )
+{
+    gulong res = 0;
+    if (g_timer)
+    {
+        g_timer_elapsed( g_timer, &res );
+       if (resetTimer) g_timer_reset( g_timer );
+    }
+    
+    return res;
+}
+
+bool wxGetLocalTime( long *timeZone, int *dstObserved )
+{
+}
+
+long wxGetCurrentTime()
+{
+}
+*/
+
 
 //-----------------------------------------------------------------------------
 // wxTimer