main.h 489 B

1234567891011121314151617181920212223
  1. /*
  2. * ALGO : PROJ. : Volume
  3. * RESEARCH : File : main.h
  4. * : Date : 20100531.0725UTC
  5. * : Email : mail@algoresearch.net
  6. */
  7. #include <pthread.h>
  8. typedef struct{
  9. pthread_t pid_observer, pid_display, pid_event_loop;
  10. int *space_i, *space_o;
  11. unsigned int space_w, space_h, space_d, size_plane, size_space;
  12. int dw, dh;
  13. int a_sync, motion, mx, my;
  14. float ax, ay, c_ax, c_ay;
  15. int main, mapping, display;
  16. unsigned int iter;
  17. }SYS_TABLE;