summaryrefslogtreecommitdiff
path: root/audio/xcdplayer/files/patch-ab
blob: 645eedd96d6b82610db91b1d7b081e28c219d715 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
*** button_setup.c	Tue Jan 12 10:59:47 1993
--- /users/swallace/work/xcdplayer/button_setup.c	Wed Feb 23 07:36:36 1994
***************
*** 20,25 ****
--- 20,28 ----
  # include <X11/Xaw/Toggle.h>
  
  # include "cdrom_globs.h"
+ #ifdef __FreeBSD__
+ # include "cdrom_freebsd.h"
+ #endif
  #ifdef sun
  # include "cdrom_sun.h"
  #endif
***************
*** 44,49 ****
--- 47,69 ----
  # include "ff.xbm"
  # include "pgm.xbm"
  
+ void     title_dialog_setup();
+ static	void     play_button_setup();
+ static	void     stop_button_setup();
+ static	void     pause_button_setup();
+ static	void     prev_button_setup();
+ static	void     next_button_setup();
+ static	void     eject_button_setup();
+ #ifdef sgi
+ void     audio_button_setup();
+ #endif
+ static	void     quit_button_setup();
+ static	void     cycle_button_setup();
+ static	void     shuffle_button_setup();
+ static	void     rew_button_setup();
+ static	void     ff_button_setup();
+ static	void     pgm_button_setup();
+ void     buttons_reset();
  
  static Widget	buttons_form_widget;
  static Widget	play_button_widget;
***************
*** 71,95 ****
  	Widget		parent_widget;
  {
  	Arg		args[1];
- 
- 	extern void	title_dialog_setup();
- 	extern void	play_button_setup();
- 	extern void	stop_button_setup();
- 	extern void	pause_button_setup();
- 	extern void	prev_button_setup();
- 	extern void	next_button_setup();
- 	extern void	eject_button_setup();
- #ifdef sgi
- 	extern void	audio_button_setup();
- #endif
- 	extern void	quit_button_setup();
- 	extern void	cycle_button_setup();
- 	extern void	shuffle_button_setup();
- 	extern void	rew_button_setup();
- 	extern void	ff_button_setup();
- 	extern void	pgm_button_setup();
- 	extern void	buttons_reset();
- 
  
  	buttons_form_widget = XtCreateManagedWidget("buttonsForm",
  						    formWidgetClass,
--- 91,96 ----
*** cdrom_callb.c	Tue Jan 12 10:59:48 1993
--- /users/swallace/work/xcdplayer/cdrom_callb.c	Wed Feb 23 07:36:41 1994
***************
*** 22,27 ****
--- 22,30 ----
  
  # include "debug.h"
  # include "cdrom_globs.h"
+ #ifdef __FreeBSD__
+ # include "cdrom_freebsd.h"
+ #endif
  #ifdef sun
  # include "cdrom_sun.h"
  #endif
*** internals.c	Tue Jan 12 10:59:45 1993
--- /users/swallace/work/xcdplayer/internals.c	Wed Feb 23 07:36:47 1994
***************
*** 22,27 ****
--- 22,30 ----
  
  # include "debug.h"
  # include "cdrom_globs.h"
+ #ifdef __FreeBSD__
+ # include "cdrom_freebsd.h"
+ #endif
  #ifdef sun
  # include "cdrom_sun.h"
  #endif
***************
*** 29,35 ****
  # include "cdrom_sgi.h"
  #endif
  
! 
  static XtIntervalId	ivid			= -1;
  static XtIntervalId	scanivid		= -1;
  static XtIntervalId	stativid		= -1;
--- 32,38 ----
  # include "cdrom_sgi.h"
  #endif
  
! static void     scan_update();
  static XtIntervalId	ivid			= -1;
  static XtIntervalId	scanivid		= -1;
  static XtIntervalId	stativid		= -1;
***************
*** 170,176 ****
  	struct msf	track_start;
          struct msf	start_addr, end_addr;
  	int		curtrack;
- 	extern void 	scan_update();
  
  	if (cdrom_get_curmsf(&start_addr) == -1) {
  		debug_printf(1, "rew: error reading location\n");
--- 173,178 ----
***************
*** 304,310 ****
          struct msf	start_addr, end_addr,  next_start;
  	char		t;
  	int		curtrack;
- 	extern void 	scan_update();
  
  	if (cdrom_get_curmsf(&start_addr) == -1) {
  		debug_printf(1, "ff: error reading location\n");
--- 306,311 ----
*** logo_setup.c	Tue Jan 12 10:59:46 1993
--- /users/swallace/work/xcdplayer/logo_setup.c	Wed Feb 23 07:36:52 1994
***************
*** 28,33 ****
--- 28,36 ----
  # include <stdio.h>
  
  # include "cdrom_globs.h"
+ #ifdef __FreeBSD__
+ # include "cdrom_freebsd.h"
+ #endif
  #ifdef sun
  # include "cdrom_sun.h"
  #endif
***************
*** 55,73 ****
  Widget		title_done_widget;
  
  static int	vol;
  
  void
  logo_setup(parent_widget)
  	Widget		parent_widget;
  {
- 	extern void	leds_label_setup();
- 	extern void	cb_track_button();
- 	extern void	cb_timer_button();
- 	extern void	volume_jump_proc();
- 	extern void	volume_scroll_proc();
- 	extern void	popup_title_dialog();
- 	extern void	popdown_title_dialog();
- 
  	Widget		version_label_widget;
  	char		version_string[80];
  
--- 58,76 ----
  Widget		title_done_widget;
  
  static int	vol;
+ extern void     leds_label_setup();
+ static void     cb_track_button();
+ static void     cb_timer_button();
+ static void     volume_jump_proc();
+ static void     volume_scroll_proc();
+ static void     popup_title_dialog();
+ static void     popdown_title_dialog();
+ 
  
  void
  logo_setup(parent_widget)
  	Widget		parent_widget;
  {
  	Widget		version_label_widget;
  	char		version_string[80];
  
*** program.c	Tue Jan 12 10:59:49 1993
--- /users/swallace/work/xcdplayer/program.c	Wed Feb 23 07:36:55 1994
***************
*** 27,36 ****
  
  # include <stdio.h>
  # include <string.h>
! # include <malloc.h>
  
  # include "debug.h"
  # include "cdrom_globs.h"
  #ifdef sun
  # include "cdrom_sun.h"
  #endif
--- 27,39 ----
  
  # include <stdio.h>
  # include <string.h>
! # include <sys/malloc.h>
  
  # include "debug.h"
  # include "cdrom_globs.h"
+ #ifdef __FreeBSD__
+ # include "cdrom_freebsd.h"
+ #endif
  #ifdef sun
  # include "cdrom_sun.h"
  #endif
***************
*** 52,57 ****
--- 55,69 ----
  static	Boolean	adding_to_new_track = False;
  static	struct	prognode *current_node = NULL;
  
+ static	void    cb_move_program_ptr();
+ static	void    cb_clear_program();
+ static	void    cb_cancel_program();
+ static	void    cb_save_program();
+ static	void    cb_trackbuttons();
+ static	void    cb_add_10();
+ static	void    cb_new_track();
+ static	void    cb_program_all();
+ 
  void
  program_form_setup (parent_widget)
  	Widget	parent_widget;
***************
*** 66,80 ****
  	Widget	cancel_button;
  	Widget	save_button;
  	Widget	all_button;
- 
- 	extern	void	cb_move_program_ptr();
- 	extern	void	cb_clear_program();
- 	extern	void	cb_cancel_program();
- 	extern	void	cb_save_program();
- 	extern	void	cb_trackbuttons();
- 	extern	void	cb_add_10();
- 	extern	void	cb_new_track();
- 	extern	void	cb_program_all();
  
  	/* 
  	 * create program form as a non-managed widget, because this 
--- 78,83 ----
*** shuffle.c	Tue Jan 12 10:59:38 1993
--- /users/swallace/work/xcdplayer/shuffle.c	Wed Feb 23 07:36:59 1994
***************
*** 18,23 ****
--- 18,26 ----
  
  # include "debug.h"
  # include "cdrom_globs.h"
+ #ifdef __FreeBSD__
+ # include "cdrom_freebsd.h"
+ #endif
  #ifdef sun
  # include "cdrom_sun.h"
  #endif