1 /* $Header: /home/cvs/wavplay/xltwavplay.h,v 1.1.1.1 1999/11/21 19:50:56 wwg Exp $
2  * Warren W. Gay VE3WWG		Thu Feb 13 21:08:14 1997
3  *
4  * X LessTif WAV Play :
5  *
6  * 	Copyright (C) 1997  Warren W. Gay VE3WWG
7  *
8  * This  program is free software; you can redistribute it and/or modify it
9  * under the  terms  of  the GNU General Public License as published by the
10  * Free Software Foundation version 2 of the License.
11  *
12  * This  program  is  distributed  in  the hope that it will be useful, but
13  * WITHOUT   ANY   WARRANTY;   without   even  the   implied   warranty  of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
15  * Public License for more details (see enclosed file COPYING).
16  *
17  * You  should have received a copy of the GNU General Public License along
18  * with this  program; if not, write to the Free Software Foundation, Inc.,
19  * 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  * Send correspondance to:
22  *
23  * 	Warren W. Gay VE3WWG
24  * 	5536 Montevideo Road #17
25  *	Mississauga, Ontario L5N 2P4
26  *
27  * Email:
28  * 	wwg@ica.net			(current ISP of the month :-) )
29  * 	bx249@freenet.toronto.on.ca	(backup)
30  *
31  * $Log: xltwavplay.h,v $
32  * Revision 1.1.1.1  1999/11/21 19:50:56  wwg
33  * Import wavplay-1.3 into CVS
34  *
35  * Revision 1.1  1997/04/14 00:55:28  wwg
36  * Initial revision
37  *
38  */
39 #ifndef _xltwavplay_h_
40 #define _xltwavplay_h_ "@(#)xltwavplay.h $Revision: 1.1.1.1 $"
41 
42 extern void ReportErrorf(const char *format,...);
43 
44 extern void CreateMenu(
45 	Widget wMenuBar,					// Menu bar widget
46 	Widget *wPulldown,					// Menu widget to create
47 	char *namePulldown,					// Class name of menu widget to create
48 	Widget *wCascade,					// Cascade button for pulldown menu to create
49 	char *nameCascade,					// Class name of cascade button to create
50 	...);							// Menu entries...
51 
52 extern void SaveAsDlgOKCB(Widget w,XtPointer client_data,XtPointer call_data);
53 
54 extern Widget wSaveAsDlg;					/* File "Save As..." dialog */
55 extern Widget wSelectionsListBox;				/* Selections list box */
56 
57 extern XmString sRecorded_wav;					/* XmString() of RECORD_PATH */
58 
59 #endif /* _xltwavplay_h_ */
60 
61 /* $Source: /home/cvs/wavplay/xltwavplay.h,v $ */
62