--- np2/win9x/fontmng.cpp 2005/02/09 20:11:35 1.3 +++ np2/win9x/fontmng.cpp 2005/03/11 15:12:58 1.6 @@ -92,7 +92,7 @@ void *fontmng_create(int size, UINT type bi->bmiColors[i].rgbReserved = PC_RESERVED; } - hdc = GetDC(NULL); + hdc = GetDC(NULL); ret->hBitmap = CreateDIBSection(hdc, bi, DIB_RGB_COLORS, (void **)&ret->image, NULL, 0); ret->hdcimage = CreateCompatibleDC(hdc); @@ -117,7 +117,6 @@ void *fontmng_create(int size, UINT type return(ret); } - void fontmng_destroy(void *hdl) { FNTMNG fhdl; @@ -164,16 +163,16 @@ static void fontmng_getchar(FNTMNG fhdl, BRESULT fontmng_getsize(void *hdl, const OEMCHAR *string, POINT_T *pt) { + int width; OEMCHAR buf[4]; _FNTDAT fdat; - int width; int leng; - width = 0; if ((hdl == NULL) || (string == NULL)) { goto fmgs_exit; } + width = 0; while(1) { leng = milstr_charsize(string); if (!leng) {