/*1* Clock (winclock.h)2*3* Copyright 1998 by Marcel Baur <[email protected]>4* This file is essentially rolex.c by Jim Peterson.5* Please see my winclock.c and/or his rolex.c for references.6*7*8* This library is free software; you can redistribute it and/or9* modify it under the terms of the GNU Lesser General Public10* License as published by the Free Software Foundation; either11* version 2.1 of the License, or (at your option) any later version.12*13* This library is distributed in the hope that it will be useful,14* but WITHOUT ANY WARRANTY; without even the implied warranty of15* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU16* Lesser General Public License for more details.17*18* You should have received a copy of the GNU Lesser General Public19* License along with this library; if not, write to the Free Software20* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA21*/2223void AnalogClock(HDC dc, int X, int Y, BOOL bSeconds, BOOL border);24HFONT SizeFont(HDC dc, int x, int y, BOOL bSeconds, const LOGFONTW* font);25void DigitalClock(HDC dc, int X, int Y, BOOL bSeconds, HFONT font);262728