Is it possible to add an option to change horizontal alignment of the clock text (left, center, right)?
I think, just changing this would be enough:
(DLL → Tclock.c)
int UpdateClock(HWND hwnd, HFONT fnt)
{
. . .
if(!m_hdcClock){
. . .
SetTextAlign(m_hdcClock,TA_CENTER|TA_TOP);
. . .
}
. . .
}