mirror of
https://github.com/clockworkpi/DevTerm.git
synced 2026-03-23 04:12:48 +01:00
add demo volume code
This commit is contained in:
23
demo/volume/include/main.h
Normal file
23
demo/volume/include/main.h
Normal file
@@ -0,0 +1,23 @@
|
||||
/*
|
||||
* ALGO : PROJ. : Volume
|
||||
* RESEARCH : File : main.h
|
||||
* : Date : 20100531.0725UTC
|
||||
* : Email : mail@algoresearch.net
|
||||
*/
|
||||
|
||||
#include <pthread.h>
|
||||
|
||||
typedef struct{
|
||||
pthread_t pid_observer, pid_display, pid_event_loop;
|
||||
|
||||
int *space_i, *space_o;
|
||||
unsigned int space_w, space_h, space_d, size_plane, size_space;
|
||||
int dw, dh;
|
||||
|
||||
int a_sync, motion, mx, my;
|
||||
float ax, ay, c_ax, c_ay;
|
||||
|
||||
int main, mapping, display;
|
||||
unsigned int iter;
|
||||
}SYS_TABLE;
|
||||
|
||||
Reference in New Issue
Block a user