source: buchla-68k/include/scfns.h@ 0580615

Last change on this file since 0580615 was 0580615, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Point of no return.

  • Property mode set to 100644
File size: 1.6 KB
Line 
1/*
2 =============================================================================
3 scfns.h -- score function and variable definitions
4 Version 14 -- 1988-04-20 -- D.N. Lynx Crowe
5
6 Must follow stddefs.h and score.h if used.
7 =============================================================================
8*/
9
10extern void eh_ins(struct s_entry *ne, short et);
11extern void eh_rmv(struct s_entry *ev, short et);
12extern void sc_clr(short ns);
13
14extern short e_del(struct s_entry *e1);
15extern short selscor(short ns);
16extern int sc_goto(long tval);
17
18extern long scinit(void);
19extern long evleft(void);
20
21extern struct s_entry *e_alc(short w);
22extern struct s_entry *e_ins(struct s_entry *e1, struct s_entry *e2);
23extern struct s_entry *e_rmv(struct s_entry *e1);
24extern struct s_entry *e_clr(struct s_entry *e1);
25extern struct s_entry *ehfind(short eh, long te, short d1, short d2);
26extern struct s_entry *frfind(long tval, int sdir);
27extern struct s_entry *ep_adj(struct s_entry *sep, int sdir, long tval);
28extern struct s_entry *se_exec(struct s_entry *ep, short sd);
29extern struct s_entry *findev(struct s_entry *ep, long te, short et, short d1, short d2);
30
31extern char ac_code;
32extern char scname[][16];
33
34extern BOOL se_chg;
35
36extern short curscor, cursect;
37
38extern long se1_cnt, se2_cnt, se3_cnt;
39extern long spool[], *pspool;
40extern long spcount, frags;
41extern long t_bak, t_cur, t_ctr, t_fwd;
42
43extern struct s_entry *size1, *size2, *size3;
44extern struct s_entry *scores[], *scp;
45extern struct s_entry *seclist[][N_SECTS], *hplist[][N_TYPES];
46extern struct s_entry *p_bak, *p_cur, *p_ctr, *p_fwd;
Note: See TracBrowser for help on using the repository browser.