File: GetTickCount.c

package info (click to toggle)
rss-glx 0.9.1-5
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 11,996 kB
  • sloc: cpp: 20,390; sh: 10,126; ansic: 4,037; xml: 680; makefile: 135; perl: 54
file content (11 lines) | stat: -rw-r--r-- 191 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
#include "GetTickCount.h"

static unsigned int tickCount = 0;

void incrementTickCount(const unsigned int deltaCount) {
	tickCount += deltaCount;
}

int GetTickCount() {
	return tickCount;
}