/**************************************************************************** * Copyright (c) 2004 Digital Stream Technologies Inc. All Rights Reserved. * * Module: dsthalfe.h * Author: Jun-ku Park, hwatk@dstreamtech.com * Description: DST HAL [Front End] Platform/Project Independent Includes * * notes: hwatk20040602 * ***************************************************************************/ #ifndef __DST_HALFONT_H__ #define __DST_HALFONT_H__ #include "dsthalcommon.h" #ifdef __cplusplus extern "C" { #endif DHL_RESULT DHL_GFX_InitFont(void); DHL_RESULT DHL_GFX_SetMode(DS_U8 RenderMode, DS_U32 hres, DS_U32 vres); unsigned char *DHL_GFX_LoadCharacter(char code, DS_U32 width, DS_U32 height, DS_U32 *pWidth, DS_U32 *pHeight, int *pX, int *pY); void DHL_GFX_TextOut(PIXMAP_t *pPixMap, char *String, int length, int pos_x,int pos_y,int width,int height, int type); #ifdef __cplusplus } #endif #endif /* __DST_HALFE_H__ */