--- np2/win9x/dialog/d_clnd.cpp 2005/02/07 15:39:27 1.5 +++ np2/win9x/dialog/d_clnd.cpp 2005/03/20 08:58:19 1.7 @@ -29,7 +29,7 @@ static const VIRCAL_T vircal[6] = { {IDC static void set_cal2dlg(HWND hWnd, const UINT8 *cbuf) { int i; - TCHAR work[8]; + OEMCHAR work[8]; for (i=0; i<6; i++) { if (i != 1) { @@ -52,14 +52,11 @@ static void vircalendar(HWND hWnd, BOOL EnableWindow(GetDlgItem(hWnd, IDC_SETNOW), disp); } -static UINT32 getbcd(char *str, int len) { +static UINT8 getbcd(const OEMCHAR *str, int len) { - UINT32 ret; - UINT8 c; + UINT ret; + OEMCHAR c; - if (!(*str)) { - return(0xff); - } ret = 0; while(len--) { c = *str++; @@ -70,14 +67,14 @@ static UINT32 getbcd(char *str, int len) return(0xff); } ret <<= 4; - ret |= (UINT8)(c - '0'); + ret |= (UINT)(c - '0'); } - return(ret); + return((UINT8)ret); } LRESULT CALLBACK ClndDialogProc(HWND hWnd, UINT msg, WPARAM wp, LPARAM lp) { - char work[32]; + OEMCHAR work[32]; UINT8 b; int i; HWND subwnd; @@ -109,8 +106,8 @@ LRESULT CALLBACK ClndDialogProc(HWND hWn } for (i=0; i<6; i++) { GetDlgItemText(hWnd, vircal[i].res, - work, sizeof(work)); - b = (UINT8)getbcd(work, 2); + work, NELEMENTS(work)); + b = getbcd(work, 2); if ((b >= vircal[i].min) && (b <= vircal[i].max)) { if (i == 1) { b = ((b & 0x10) * 10) + (b << 4);