load.h (215B)
1 2 typedef struct Text Text; 3 struct Text { 4 ulong size; 5 char *data; 6 }; 7 8 typedef struct Loadctl Loadctl; 9 struct Loadctl { 10 char *addr; 11 char *path; 12 char *query; 13 Channel *c; 14 Channel *sc; 15 }; 16 17 void threadload(void*);