1 /* $Header: /home/cvs/wavplay/xmsprint.h,v 1.1.1.1 1999/11/21 19:50:56 wwg Exp $
2  * Warren W. Gay VE3WWG		Sat Mar  1 14:10:02 1997
3  *
4  * XmSprintf header file:
5  *
6  *
7  * 	X LessTif WAV Play :
8  *
9  * 	Copyright (C) 1997  Warren W. Gay VE3WWG
10  *
11  * This  program is free software; you can redistribute it and/or modify it
12  * under the  terms  of  the GNU General Public License as published by the
13  * Free Software Foundation version 2 of the License.
14  *
15  * This  program  is  distributed  in  the hope that it will be useful, but
16  * WITHOUT   ANY   WARRANTY;   without   even  the   implied   warranty  of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
18  * Public License for more details (see enclosed file COPYING).
19  *
20  * You  should have received a copy of the GNU General Public License along
21  * with this  program; if not, write to the Free Software Foundation, Inc.,
22  * 675 Mass Ave, Cambridge, MA 02139, USA.
23  *
24  * Send correspondance to:
25  *
26  * 	Warren W. Gay VE3WWG
27  * 	5536 Montevideo Road #17
28  *	Mississauga, Ontario L5N 2P4
29  *
30  * Email:
31  * 	wwg@ica.net			(current ISP of the month :-) )
32  * 	bx249@freenet.toronto.on.ca	(backup)
33  *
34  * $Log: xmsprint.h,v $
35  * Revision 1.1.1.1  1999/11/21 19:50:56  wwg
36  * Import wavplay-1.3 into CVS
37  *
38  * Revision 1.5  1997/04/14 00:54:23  wwg
39  * Added GNU license info
40  *
41  * Revision 1.4  1997/03/04 03:08:53  wwg
42  * Added function XmSprintfText()
43  *
44  * Revision 1.3  1997/03/01 21:50:27  wwg
45  * Put StrDate() function in here
46  *
47  * Revision 1.2  1997/03/01 19:28:44  wwg
48  * Added XmSprintfLabel() function
49  *
50  * Revision 1.1  1997/03/01 19:13:18  wwg
51  * Initial revision
52  */
53 #ifndef _xmsprint_h_
54 #define _xmsprint_h_ "@(#)xmsprint.h $Revision: 1.1.1.1 $"
55 
56 extern XmString XmSprintf(const char *format,...);
57 extern void XmSprintfLabel(Widget w,const char *format,...);
58 extern void XmSprintfText(Widget w,const char *format,...);
59 
60 extern char *StrDate(time_t td);
61 
62 #endif /* _xmsprint_h_ */
63 
64 /* $Source: /home/cvs/wavplay/xmsprint.h,v $ */
65