mojo_client/src/Client/controller.h_
False.Genesis 58872f1f39 initial release.
still a lot of stuff to fix before everything works as it should.
compilation works, linking produces errors.
most code cleanups done.
2007-01-05 18:30:22 +00:00

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