still a lot of stuff to fix before everything works as it should. compilation works, linking produces errors. most code cleanups done.
16 lines
318 B
Plaintext
16 lines
318 B
Plaintext
#ifndef CONTROLLER_H
|
|
#define CONTROLLER_H
|
|
|
|
void c_send(char,char*);
|
|
int c_closeconnection(void*);
|
|
int c_recieve(void*);
|
|
int c_cmdhandler(void*);
|
|
int c_create_listener(void*);
|
|
void c_quit(void);
|
|
void c_init(void);
|
|
|
|
extern unsigned int c_port;
|
|
extern bool allowcontroller;
|
|
extern char *c_password;
|
|
|
|
#endif |