source: buchla-68k/ram/sqscan.x@ 6262b5c

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

Added include files for global functions and variables.

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