File: timer.h

package info (click to toggle)
xabacus 8.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,840 kB
  • sloc: ansic: 24,186; xml: 5,982; sh: 3,422; makefile: 642
file content (55 lines) | stat: -rw-r--r-- 1,482 bytes parent folder | download | duplicates (3)
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
46
47
48
49
50
51
52
53
54
55
/*
 * @(#)timer.h
 *
 * Copyright 2005 - 2017  David A. Bagley, bagleyd AT verizon.net
 *
 * All rights reserved.
 *
 * Permission to use, copy, modify, and distribute this software and
 * its documentation for any purpose and without fee is hereby granted,
 * provided that the above copyright notice appear in all copies and
 * that both that copyright notice and this permission notice appear in
 * supporting documentation, and that the name of the author not be
 * used in advertising or publicity pertaining to distribution of the
 * software without specific, written prior permission.
 *
 * 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.
 */

/* Header file for timer */

#ifndef _timer_h
#define _timer_h

#ifdef WINVER
#include <windows.h>
#include <time.h>

#if ((WINVER > 0x030a) && !defined(GCL_HBRBACKGROUND) && !defined(GCLP_HBRBACKGROUND))
#undef WINVER
#define WINVER 0x030a
#endif
#if (WINVER <= 0x030a)		/* if WINDOWS 3.1 or less */
extern void Sleep(unsigned long cMilliseconds);
#endif
#define TimeVal long

#define initTimer(v) v = (long) GetTickCount()

#else
#include <X11/Xos.h>

#ifndef TimeVal
#define TimeVal struct timeval
#endif

#define initTimer(v) (void) X_GETTIMEOFDAY(&(v));

extern void Sleep(unsigned int cMilliseconds);
#endif

extern void useTimer(TimeVal * oldTime, int delay);

#endif /* _timer_h */