summaryrefslogtreecommitdiff
path: root/plugins/TrafficCounter/src/statistics.h
blob: 2fcff8520b2e6bd9194aed6644e7c0d0006b6189 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#ifndef _statistics_h
#define _statistics_h

/*
Traffic Counter plugin for Miranda IM 
Copyright 2007-2011 Mironych.

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
*/

#define STAT_INTERVAL_HOUR 0
#define STAT_INTERVAL_DAY 1
#define STAT_INTERVAL_WEEK 2
#define STAT_INTERVAL_MONTH 3
#define STAT_INTERVAL_YEAR 4

#define STAT_UNITS_BYTES 0
#define STAT_UNITS_KB 1
#define STAT_UNITS_MB 2
#define STAT_UNITS_ADAPTIVE 3

BOOL CALLBACK DlgProcOptStatistics(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
void Stat_ReadFile(BYTE);
void Stat_Show(HWND);
void Stat_UpdateTotalTraffic(HWND, DWORD, DWORD);
void Stat_CheckStatistics(BYTE);
DWORD Stat_GetStartIndex(BYTE AccNum, BYTE Interval, DWORD ItemNumber, SYSTEMTIME *st);
void Stat_SetAccShift(BYTE AccNum, BYTE EldestAccount);
DWORD Stat_GetItemValue(WORD SelectedAccs, BYTE Interval, DWORD ItemNum, BYTE SubitemNum);
DWORD Stat_GetRecordsNumber(BYTE AccNum, BYTE Interval);
BYTE Stat_GetEldestAcc(WORD SelectedAccs);

#endif _statistics_h