fixed some windows related defines, and made btClock optional (behind #define)

This commit is contained in:
ejcoumans
2007-03-07 00:33:11 +00:00
parent 57883344df
commit 1655fbc2c0

View File

@@ -22,7 +22,10 @@ subject to the following restrictions:
#ifndef QUICK_PROF_H
#define QUICK_PROF_H
//if you don't need btClock, you can comment next line
#define USE_BT_CLOCK 1
#ifdef USE_BT_CLOCK
#ifdef __PPU__
#include <sys/sys_time.h>
#include <stdio.h>
@@ -34,7 +37,12 @@ typedef uint64_t __int64;
#endif
#if defined(WIN32) || defined(_WIN32)
#define USE_WINDOWS_TIMERS
#define USE_WINDOWS_TIMERS
#define WIN32_LEAN_AND_MEAN
#define NOWINRES
#define NOMCX
#define NOIME
#include <windows.h>
#include <time.h>
#else
@@ -213,6 +221,8 @@ class btClock
};
#endif //USE_BT_CLOCK
//#define USE_QUICKPROF 1
//Don't use quickprof for now, because it contains STL. TODO: replace STL by Bullet container classes.