00001 /* 00002 * This file is part of browser. 00003 * 00004 * browser is free software: you can redistribute it and/or modify 00005 * it under the terms of the GNU General Public License as published by 00006 * the Free Software Foundation, either version 2 of the License, or 00007 * (at your option) any later version. 00008 * 00009 * browser is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00012 * GNU General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU General Public License 00015 * along with this program. If not, see <http://www.gnu.org/licenses/>. 00016 */ 00017 00018 // 00019 // 00020 // Description: timing information 00021 // 00022 // Author: ann <ann@localhost>, (C) 2005 00023 // 00024 // Copyright: See COPYING file that comes with this distribution 00025 // 00026 // 00027 #ifndef TIMINGINFO_h 00028 #define TIMINGINFO_h 00029 00030 #ifdef __cplusplus 00031 extern "C" { 00032 #endif /* __cplusplus */ 00033 00034 // used to enable/disable the timing information 00035 // #define TIMING_INFORMATION_ENABLED 00036 00037 int timing_display_time_elapsed(void); 00038 00039 int timing_init(void); 00040 int timing_destroy(void); 00041 00042 00043 #ifdef __cplusplus 00044 } 00045 #endif /* __cplusplus */ 00046 00047 00048 #endif //TIMINGINFO_h
1.5.6