Files
lcdproc/clients/lcdvc/lcd_link.h
T

15 lines
268 B
C
Raw Normal View History

2006-04-24 20:05:35 +00:00
#ifndef LCD_LINK_H
#define LCD_LINK_H
extern char *address;
2006-04-24 20:05:35 +00:00
extern int port;
int setup_connection(void);
int teardown_connection(void);
int read_response(char *str, int maxsize);
int process_response(char *str);
int update_display(void);
int send_nop(void);
2006-04-24 20:05:35 +00:00
#endif