mmc_tictoc.h
Go to the documentation of this file.
1 /***************************************************************************/
32 /***************************************************************************/
38 #ifndef GETTIMEOFDAY_H
39 #define GETTIMEOFDAY_H
40 
41 #ifdef __cplusplus
42 extern "C" {
43 #endif
44 
45 unsigned int StartTimer ();
46 unsigned int GetTimeMillis ();
47 void sleep_ms(int milliseconds);
48 
49 #if defined(_WIN32) && defined(USE_OS_TIMER) && !defined(MCX_CONTAINER)
50 int EnableVTMode();
51 #endif
52 
53 #ifdef __cplusplus
54 }
55 #endif
56 
57 #endif /* GETTIMEOFDAY_H */
58 
void sleep_ms(int milliseconds)
Cross-platform sleep function.
Definition: mmc_tictoc.c:202