av.h (213B)
1 #ifndef AV_H 2 #define AV_H 3 4 //Include stdint.h prior to this header 5 6 extern int key[16]; 7 extern int quit; 8 9 int draw(uint8_t *); 10 void sdlinit(void); 11 void handleev(void); 12 void sdlquit(void); 13 void beep(void); 14 15 #endif