/FallingSandpaper/jni/setup.h

http://thelements.googlecode.com/ · C Header · 19 lines · 6 code · 4 blank · 9 comment · 0 complexity · 4a8d66d49f339d4cb94c712921dcbfee MD5 · raw file

  1. /*
  2. * setup.h
  3. * -----------------------------
  4. * Declares the rsetup function, which initializes
  5. * all of the arrays and variables necessary. Also
  6. * includes necessary headers.
  7. */
  8. #ifndef SETUP_H_INCLUDED
  9. #define SETUP_H_INCLUDED
  10. //Include the global variables
  11. #include "app.h"
  12. //Include the global macros
  13. #include "macros.h"
  14. void rsetup(void);
  15. #endif