00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00032 #ifndef __MLV__MLV_TIME_H__
00033 #define __MLV__MLV_TIME_H__
00034
00035 #ifdef __cplusplus
00036 extern "C" {
00037 #endif
00038
00045 void MLV_wait_milliseconds(int milliseconds);
00046
00052 void MLV_wait_seconds(int seconds);
00053
00059 int MLV_get_time();
00060
00083 int MLV_get_date(
00084 int* seconds, int* minutes, int* hours,
00085 int* day, int* month, int* year,
00086 int* day_of_the_week
00087 );
00088
00099 void MLV_change_frame_rate( int rate );
00100
00106 int MLV_get_frame_rate( );
00107
00113 void MLV_delay_according_to_frame_rate( );
00114
00115 #ifdef __cplusplus
00116 }
00117 #endif
00118
00119 #endif