source: buchla-68k/ram/tundsp.x

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

Fix conversion warnings.

  • Property mode set to 100644
File size: 1.3 KB
Line 
1/*
2 =============================================================================
3 tundsp.c -- external declarations
4 =============================================================================
5*/
6
7#pragma once
8
9#include "stdint.h"
10
11/*
12 =============================================================================
13 external variables
14 =============================================================================
15*/
16
17extern int8_t *tdlabl[];
18extern int16_t tunpal[16][3];
19
20/*
21 =============================================================================
22 external functions
23 =============================================================================
24*/
25
26extern void advtcur(void);
27extern void bsptcur(void);
28extern void dsttval(int16_t row, int16_t col, int16_t val, int16_t fg, int16_t bg);
29extern void gettun(int16_t n);
30extern void inittl(void);
31extern void inittt(int16_t n);
32extern void puttun(int16_t n);
33extern void td_incr(int16_t mode);
34extern void td_intp(int16_t mode);
35extern void td_trcp(int16_t mode);
36extern void tdswin(int16_t n);
37extern int16_t tt_incr(int16_t from, int16_t to);
38extern int16_t tt_intp(int16_t from, int16_t to);
39extern void tt_trcp(int16_t start, int16_t finish, int16_t dest);
40extern void tundsp(void);
41extern void twins(void);
Note: See TracBrowser for help on using the repository browser.