source: buchla-68k/ram/sqselbx.x@ 19caa64

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

Fix sqselbx.c.

  • Property mode set to 100644
File size: 1.3 KB
Line 
1/*
2 =============================================================================
3 sqselbx.c -- external declarations
4 =============================================================================
5*/
6
7#pragma once
8
9#include "fields.h"
10#include "patch.h"
11#include "stdint.h"
12
13/*
14 =============================================================================
15 external variables
16 =============================================================================
17*/
18
19extern int8_t actcol[];
20extern int16_t action;
21extern int8_t nextact[];
22extern struct seqent seqbuf;
23extern int8_t seqvcol[];
24extern struct selbox sqboxes[];
25extern int8_t sqdebuf[50];
26extern int16_t sqdeflg;
27extern int8_t sqhilit[][8];
28extern uint16_t sqidata[];
29extern int16_t sqmenu;
30extern uint16_t sqndata[];
31extern int8_t sqopreq[];
32extern int8_t sqvcol[];
33
34/*
35 =============================================================================
36 external functions
37 =============================================================================
38*/
39
40extern void endssm(int16_t row, int16_t col);
41extern void hilitsq(int8_t n);
42extern void movestc(int16_t r, int16_t c);
43extern void postcm(void);
44extern void setsqm(int16_t r, int16_t c);
45extern int16_t sqenter(void);
46extern int16_t sqfnbox(int16_t n);
Note: See TracBrowser for help on using the repository browser.