dol: initial dol commit
[jump.git] / dol / examples / example5 / src / global.h
diff --git a/dol/examples/example5/src/global.h b/dol/examples/example5/src/global.h
new file mode 100644 (file)
index 0000000..b1373b2
--- /dev/null
@@ -0,0 +1,13 @@
+#ifndef GLOBAL_H
+#define GLOBAL_H
+
+#define NUMBER_OF_FFT_POINTS 16
+
+//structure for holding complex numbers
+typedef struct complex_number
+{
+  float real;
+  float imag;
+} ComplexNumber;
+
+#endif