aboutsummaryrefslogtreecommitdiff
path: root/generic/perfos.h
diff options
context:
space:
mode:
authorcvs2svn2005-06-10 10:29:11 +0000
committercvs2svn2005-06-10 10:29:11 +0000
commit960cdf29197bc3f5922110cf26627aa9709ac79b (patch)
tree7d6e4a472376b203d21826c2230b4a8c6a9024bd /generic/perfos.h
parent3fc9c4bc1d6f70db41ad418992bf3d461059d3c0 (diff)
downloadtkzinc-960cdf29197bc3f5922110cf26627aa9709ac79b.zip
tkzinc-960cdf29197bc3f5922110cf26627aa9709ac79b.tar.gz
tkzinc-960cdf29197bc3f5922110cf26627aa9709ac79b.tar.bz2
tkzinc-960cdf29197bc3f5922110cf26627aa9709ac79b.tar.xz
This commit was manufactured by cvs2svn to create branch 'bogue40'.
Diffstat (limited to 'generic/perfos.h')
-rw-r--r--generic/perfos.h63
1 files changed, 0 insertions, 63 deletions
diff --git a/generic/perfos.h b/generic/perfos.h
deleted file mode 100644
index fb54bf5..0000000
--- a/generic/perfos.h
+++ /dev/null
@@ -1,63 +0,0 @@
-/*
- * perfos.h -- Header for perf module.
- *
- * Authors : Patrick Lecoanet.
- * Creation date :
- *
- * $Id$
- */
-
-/*
- * Copyright (c) 1996 - 2005 CENA, Patrick Lecoanet --
- *
- * See the file "Copyright" for information on usage and redistribution
- * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- */
-
-
-#ifndef _perfos_h
-#define _perfos_h
-
-#ifdef __CPLUSPLUS__
-extern "C" {
-#endif
-
-#ifndef _WIN32
-
-#include <stdio.h>
-#include <math.h>
-#include <sys/types.h>
-#include <sys/time.h>
-#include <sys/times.h>
-#include <X11/Xlib.h>
-
- typedef struct
- {
- long current_correction;
- long current_delay;
- long total_delay;
- int actions;
- char *message;
- } ZnChronoRec, *ZnChrono;
-
-
- void ZnXStartChrono(ZnChrono /*chrono*/, Display */*dpy*/, Drawable /*win*/);
- void ZnXStopChrono(ZnChrono /*chrono*/, Display */*dpy*/, Drawable /*win*/);
- void ZnStartChrono(ZnChrono /*chrono*/);
- void ZnStopChrono(ZnChrono /*chrono*/);
- void ZnStartUCChrono(ZnChrono /*chrono*/);
- void ZnStopUCChrono(ZnChrono /*chrono*/);
- ZnChrono ZnNewChrono(char */*message*/);
- void ZnFreeChrono(ZnChrono /*chrono*/);
- void ZnPrintChronos(void);
- void ZnGetChrono(ZnChrono /*chrono*/, long */*time*/, int */*actions*/);
- void ZnResetChronos(ZnChrono /*chrono*/);
-
-#endif /* _WIN32 */
-
-#ifdef __CPLUSPLUS__
-}
-#endif
-
-#endif /* _perfos_h */