13 lines
207 B
C
13 lines
207 B
C
|
#ifndef ASCIILIB_H
|
||
|
#define ASCIILIB_H
|
||
|
|
||
|
#include <string.h>
|
||
|
|
||
|
//#define ASCII_8X16_MS_Gothic
|
||
|
#define ASCII_8X16_System
|
||
|
|
||
|
void GetASCIICode(unsigned char* pBuffer,unsigned char ASCII);
|
||
|
|
||
|
#endif
|
||
|
|