X-Git-Url: http://sraa.de/git/?a=blobdiff_plain;f=dol%2Fexamples%2Fexample5%2Fsrc%2Fglobal.h;fp=dol%2Fexamples%2Fexample5%2Fsrc%2Fglobal.h;h=b1373b2201d21adb873bc0a67ef3274c2b4cf026;hb=8c411cf24ed0eb889191aaeafd8fa1e69081df42;hp=0000000000000000000000000000000000000000;hpb=dea7a4fb1ed110d3ce6e6d9255103d724bd66c0e;p=jump.git diff --git a/dol/examples/example5/src/global.h b/dol/examples/example5/src/global.h new file mode 100644 index 0000000..b1373b2 --- /dev/null +++ b/dol/examples/example5/src/global.h @@ -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