source: buchla-68k/ram/sqscan.x@ 526a993

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

Wording change.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*
2 =============================================================================
3 sqscan.c -- external declarations
4 =============================================================================
5*/
6
7#pragma once
8
9#include "score.h"
10#include "stdint.h"
11
12/*
13 =============================================================================
14 external variables
15 =============================================================================
16*/
17
18extern int16_t chkstop;
19extern int8_t *nlist[];
20extern int16_t notetab[];
21extern int16_t octab[];
22
23/*
24 =============================================================================
25 external functions
26 =============================================================================
27*/
28
29extern int16_t Pcheck(struct s_entry *ptr, int8_t *msg);
30extern int16_t Qadv(void);
31extern int16_t Qevent(void);
32extern int16_t Qnote(void);
33extern int16_t Qseq(void);
34extern struct n_entry *insnevt(struct n_entry *nsp, int16_t nt, int16_t grp, int16_t note, int16_t vel);
35extern void nospace(int8_t *et);
36extern void sqinit(void);
37extern int16_t sqscan(int8_t *ip);
Note: See TracBrowser for help on using the repository browser.