]> git.cworth.org Git - apitrace/blobdiff - os.hpp
Remove spurious tag in snapdiff output.
[apitrace] / os.hpp
diff --git a/os.hpp b/os.hpp
index 8e1c2957a66b7e87b88805bf4382467b901e7fae..42a3daac7ce7cf09f80359c424530daded40f190 100644 (file)
--- a/os.hpp
+++ b/os.hpp
  *
  **************************************************************************/
 
+/*
+ * Simple OS abstraction layer.
+ */
+
 #ifndef _OS_HPP_
 #define _OS_HPP_
 
+#include <stdlib.h>
+#include <stdarg.h>
+#include <stdio.h>
+
 #ifdef WIN32
 #ifndef snprintf
 #define snprintf _snprintf
 #ifndef vsnprintf
 #define vsnprintf _vsnprintf
 #endif
-#endif /* WIN32 */
+#define PATH_SEP '\\'
+#else /* !WIN32 */
+#define PATH_SEP '/'
+#endif /* !WIN32 */
 
 #ifndef PATH_MAX
 #define PATH_MAX 1024
@@ -46,6 +57,16 @@ void AcquireMutex(void);
 void ReleaseMutex(void);
 
 bool GetProcessName(char *str, size_t size);
+bool GetCurrentDir(char *str, size_t size);
+
+void DebugMessage(const char *format, ...);
+
+/**
+ * Get the current time in microseconds from an unknown base.
+ */
+long long GetTime(void);
+
+void Abort(void);
 
 } /* namespace OS */