aboutsummaryrefslogtreecommitdiff
path: root/dave/fileutil.h
diff options
context:
space:
mode:
authorcnlohr <lohr85@gmail.com>2018-04-15 17:43:12 -0400
committercnlohr <lohr85@gmail.com>2018-04-15 17:43:12 -0400
commit0ab91a6e9374f190c049a5d8ea1319b9b37529c1 (patch)
tree85398db4a4d5a40b3adec733fe1d1e183e13f3b8 /dave/fileutil.h
parentdd9936ef174746b73a688706de9c4a14fca2d58e (diff)
downloadlibsurvive-0ab91a6e9374f190c049a5d8ea1319b9b37529c1.tar.gz
libsurvive-0ab91a6e9374f190c049a5d8ea1319b9b37529c1.tar.bz2
Move things into attic and update Makefile to do dependnencies.
Diffstat (limited to 'dave/fileutil.h')
-rw-r--r--dave/fileutil.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/dave/fileutil.h b/dave/fileutil.h
deleted file mode 100644
index e5da244..0000000
--- a/dave/fileutil.h
+++ /dev/null
@@ -1,35 +0,0 @@
-#ifndef _fileutil_h_
-#define _fileutil_h_
-
-#include <pthread.h>
-#include "os_generic.h"
-
-void LoadLighthousePos(
- const char *path,
- float *x, float *y, float *z,
- float *qi, float *qj, float *qk, float *qreal);
-
-
-// first 32 are hmd, next 24 wm0 next 24 wm1
-#define NUM_HMD 80
-#define NUM_SWEEP 4
-#define SWEEP_LX 0
-#define SWEEP_LY 1
-#define SWEEP_RX 2
-#define SWEEP_RY 3
-void LoadHmdProcessedDataAngles(
- const char *path,
- double angle[NUM_SWEEP][NUM_HMD]);
-
-
-extern og_mutex_t read_mutex;
-extern og_thread_t read_thread;
-extern double read_hmdAngles[NUM_SWEEP][NUM_HMD];
-extern int read_hmdAngleViewed[NUM_SWEEP][NUM_HMD];
-extern int read_frameno;
-void *ThreadReadHmtAngles(void *junk);
-
-
-#endif // __fileutil_h_
-
-