/********************************************************************* * * _UpdateBuffer */ static void _UpdateBuffer(EDIT_Handle hObj) { char * s; EDIT_Obj * pObj; pObj = EDIT_H2P(hObj); /* The GUI needs not to be locked here. This function is called only from EDIT_AddKey which has already locked the GUI */ s = (char*) GUI_ALLOC_h2p(pObj->hpText); GUI_AddHex(pObj->CurrentValue, pObj->MaxLen, &s); }
/********************************************************************* * * GUI__AddSpaceHex */ void GUI__AddSpaceHex(U32 v, U8 Len, char** ps) { char* s = *ps; *s++ = ' '; *ps = s; GUI_AddHex(v, Len, ps); }
/********************************************************************* * * GUI_DispHexAt */ void GUI_DispHexAt(U32 v, I16P x, I16P y, U8 Len) { char ac[9]; char* s = ac; GUI_AddHex(v, Len, &s); GUI_DispStringAt(ac, x, y); }
/********************************************************************* * * GUI_DispHex */ void GUI_DispHex(U32 v, U8 Len) { char ac[9]; char* s = ac; GUI_AddHex(v, Len, &s); GUI_DispString(ac); }
static void _UpdateBuffer(EDIT_Obj* pObj) { char * s = (char*) WM_HMEM2Ptr(pObj->hpText); GUI_AddHex(pObj->CurrentValue, pObj->MaxLen, &s); }