#include #include void main() { InitLib(); InitLCD(); TextOutAt(2,1, "LOCAL LANGUAGE"); UnderLine(2,1,14,1); BmpShowAt(8,10,"bmpch1.bmp",1); /*call Tranditional chinese BMP file*/ BmpShowAt(8,23,"bmprus.bmp",1); /*call Russian BMP file*/ BmpShowAt(8,35,"bmpkor.bmp",1); /*call Korean BMP file*/ BmpShowAt(8,48,"bmpspa.bmp",1); /*call Spanish BMP file*/ BmpShowAt(64,10,"bmpch2.bmp",1); /*call Simplified chinese BMP file*/ BmpShowAt(64,23,"bmpger.bmp",1); /*call German BMP file*/ BmpShowAt(64,35,"bmptm1.bmp",1); /*call Thai BMP file*/ BmpShowAt(64,48,"bmpfre.bmp",1); /*call French BMP file*/ Getch(); ClrScrn(); CloseLCD(); }