/*=========================================================== * Copyright (c) Realtek Semiconductor Corporation, 2005 * All rights reserved. * ========================================================== */ /*==================== File Description ===================== */ /** * @file * This file is osd font declaration for osd related functions. * * @author $Author: hillwang $ * @date $Date: 2006-08-10 19:18:22 +0800 (?Ÿæ??? 10 ?«æ? 2006) $ * @version $Revision: 1167 $ */ /** * @addtogroup osd * @{ */ #define _OSDFONT_C /*===================== Module dependency ================== */ #include "Core\Header\Include.h" /*========================== Variables =======================================*/ // 0 ~ 0x5f UINT8 code tOSD_CHARWIDTH_TABLE[][2] = { {_A_, (8<<4) | 12}, {_B_, (8<<4) | 12}, {_C_, (8<<4) | 12}, {_D_, (8<<4) | 12}, {_E_, (8<<4) | 12}, {_F_, (8<<4) | 12}, {_G_, (8<<4) | 12}, {_H_, (8<<4) | 12}, {_I_, (8<<4) | 12}, {_J_, (8<<4) | 12}, {_K_, (8<<4) | 12}, {_L_, (8<<4) | 12}, {_M_, (8<<4) | 12}, {_N_, (8<<4) | 12}, {_O_, (8<<4) | 12}, {_P_, (8<<4) | 12}, {_Q_, (8<<4) | 12}, {_R_, (8<<4) | 12}, {_S_, (8<<4) | 12}, {_T_, (8<<4) | 12}, {_U_, (8<<4) | 12}, {_V_, (8<<4) | 12}, {_W_, (8<<4) | 12}, {_X_, (8<<4) | 12}, {_Y_, (8<<4) | 12}, {_Z_, (8<<4) | 12}, {_a_, (8<<4) | 12}, {_b_, (8<<4) | 12}, {_c_, (8<<4) | 12}, {_d_, (8<<4) | 12}, {_e_, (8<<4) | 12}, {_f_, (8<<4) | 12}, {_g_, (8<<4) | 12}, {_h_, (8<<4) | 12}, {_i_, (8<<4) | 12}, {_j_, (8<<4) | 12}, {_k_, (8<<4) | 12}, {_l_, (8<<4) | 12}, {_m_, (8<<4) | 12}, {_n_, (8<<4) | 12}, {_o_, (8<<4) | 12}, {_p_, (8<<4) | 12}, {_q_, (8<<4) | 12}, {_r_, (8<<4) | 12}, {_s_, (8<<4) | 12}, {_t_, (8<<4) | 12}, {_u_, (8<<4) | 12}, {_v_, (8<<4) | 12}, {_w_, (8<<4) | 12}, {_x_, (8<<4) | 12}, {_y_, (8<<4) | 12}, {_z_, (8<<4) | 12}, {___, (8<<4) | 12},// Align items in the same column 20070531//10 {_0_, (8<<4) | 12}, {_1_, (8<<4) | 12}, {_2_, (8<<4) | 12}, {_3_, (8<<4) | 12}, {_4_, (8<<4) | 12}, {_5_, (8<<4) | 12}, {_6_, (8<<4) | 12}, {_7_, (8<<4) | 12}, {_8_, (8<<4) | 12}, {_9_, (8<<4) | 12}, {_END_, _END_}, }; // 0x60 ~ 0xAF /** * * @} */