Fix compilation with wxWidgets 2.8.12
[amule.git] / src / GetTickCount.h
blob6e09b6ee1b161c20c5dc2e1d4a30cabb2b469d6f
1 //
2 // This file is part of the aMule Project.
3 //
4 // Copyright (c) 2003-2011 Alo Sarv ( madcat_@users.sourceforge.net )
5 // Copyright (c) 2003-2011 aMule Team ( admin@amule.org / http://www.amule.org )
6 // Copyright (c) 2002-2011 Timo Kujala ( tiku@users.sourceforge.net )
7 //
8 // Any parts of this program derived from the xMule, lMule or eMule project,
9 // or contributed by third-party developers are copyrighted by their
10 // respective authors.
12 // This program is free software; you can redistribute it and/or modify
13 // it under the terms of the GNU General Public License as published by
14 // the Free Software Foundation; either version 2 of the License, or
15 // (at your option) any later version.
17 // This program is distributed in the hope that it will be useful,
18 // but WITHOUT ANY WARRANTY; without even the implied warranty of
19 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 // GNU General Public License for more details.
22 // You should have received a copy of the GNU General Public License
23 // along with this program; if not, write to the Free Software
24 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
27 #ifndef GETTICKCOUNT_H
28 #define GETTICKCOUNT_H
30 #include "Types.h" // Needed for uint32
32 #ifndef _WIN32
33 uint32 GetTickCount();
34 #else
35 // System GetTickcount is lowres, so use fullres
36 #define GetTickCount GetTickCountFullRes
37 // GetTickCount64 is a system function in Vista so rename it
38 #define GetTickCount64 GetTickCount_64
39 #endif
41 // Ideally, same than GetTickCount.
42 // However, on GUI, GetTickCount does only work in
43 // 20 msecs increment, and some classes need better.
45 uint32 GetTickCountFullRes();
47 uint64 GetTickCount64();
49 // Functions used to init the timer on GUI
51 void StartTickTimer();
53 void StopTickTimer();
55 // A cheap global time (in s) without any function calls updated in OnCoreTimer
56 extern uint32 TheTime;
58 #endif // GETTICKCOUNT_H
59 // File_checked_for_headers