Monte Carlo eXtreme (MCX)
mcx_tictoc.h
1 /***************************************************************************/
25 /***************************************************************************/
31 #ifndef GETTIMEOFDAY_H
32 #define GETTIMEOFDAY_H
33 
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37 
38 unsigned int StartTimer ();
39 unsigned int GetTimeMillis ();
40 void sleep_ms(int milliseconds);
41 
42 #if defined(_WIN32) && defined(USE_OS_TIMER) && !defined(MCX_CONTAINER)
43 int EnableVTMode();
44 #endif
45 
46 #ifdef __cplusplus
47 }
48 #endif
49 
50 #endif /* GETTIMEOFDAY_H */
51