You'll probably also need LCDScreen to create a new screen to be displayed.
To learn more about all the classes, consult the Modules section.
ftp://ftp2.c-sait.net/csait/lcdapi-0.2.tar.gz
You can then unpack them with:
Go into the new directory and type:tar zxf lcdapi-0.2.tar.gz
You will then have the liblcdapi.so library in the lib directory.make
Your program must be linked with the socket and the pthread libraries.
To compile client.cpp for example, you should use these commands on a GNU/Linux system:
There may have some differences on other systems. For example you must add -lsocket on Solaris.export LCD_API_DIR=/where/LCD_API/is export LD_LIBRARY_PATH=$LCD_API_DIR/lib:$LD_LIBRARY_PATH g++ -o client client.cpp -I$LCD_API_DIR/include -L$LCD_API_DIR/lib -llcdapi -lpthread