i am using costom font using ftrasterize function file in that when i am create custom font create then some warning display
like
Description Resource Path Location Type
#169-D argument of type "const tFontEx *" is incompatible with parameter of type "const tFont *" All_Function.c /All_Function2 line 132 C/C++ Problem
//*****************************************************************************
//
// Details of this font:
// Characters: 46 to 58 inclusive
// Style: hemi head bold (hhb)
// Size: 60 point
// Bold: no
// Italic: no
// Memory usage: 1372 bytes
//
//*****************************************************************************
i am using set for font function is GrContextFontSet(&sContext, &g_sFontExHhb60);
that two line difine in grlib.h file :
extern const tFontEx g_sFontExHhb60;
#define g_psFontExHhb60 (const tFontEx *)&g_sFontExHhb60
how can remove that warning !
#169-D argument of type "const tFontEx *" is incompatible with parameter of type "const tFont *"