Documentation de la bibliothèque MLV-0.5

MLV_time.h

Aller à la documentation de ce fichier.
00001 /*
00002  *   This file is part of the MLV Library.
00003  *
00004  *   Copyright (C) 2010 Adrien Boussicault, Marc Zipstein
00005  *
00006  *
00007  *    This Library is free software: you can redistribute it and/or modify
00008  *    it under the terms of the GNU General Public License as published by
00009  *    the Free Software Foundation, either version 3 of the License, or
00010  *    (at your option) any later version.
00011  *
00012  *    This Library is distributed in the hope that it will be useful,
00013  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
00014  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00015  *    GNU General Public License for more details.
00016  *
00017  *    You should have received a copy of the GNU General Public License
00018  *    along with this Library.  If not, see <http://www.gnu.org/licenses/>.
00019  */
00020 
00032 #ifndef __MLV_TIME_H__
00033 #define __MLV_TIME_H__
00034 
00035 #ifdef __cplusplus
00036 extern "C" {
00037 #endif
00038 
00044 void MLV_wait_milliseconds(int milliseconds);
00045 
00051 void MLV_wait_seconds(int seconds);
00052 
00058 int MLV_get_time();
00059 
00085 int MLV_get_date(
00086         int* seconds, int* minutes, int* hours,
00087         int* day, int* month, int* year,
00088         int* day_of_the_week
00089 );
00090 
00100 void MLV_change_frame_rate( int rate );
00101 
00107 int MLV_get_frame_rate( );
00108 
00114 void MLV_delay_according_to_frame_rate( );
00115 
00116 #ifdef __cplusplus
00117 }
00118 #endif
00119 
00120 #endif