Last change
on this file since 081eee0 was 432327d, checked in by Thomas Lopatic <thomas@…>, 7 years ago |
Fix conversion warnings.
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
Rev | Line | |
---|
[526a993] | 1 | /*
|
---|
| 2 | =============================================================================
|
---|
| 3 | vtyper.c -- external declarations
|
---|
| 4 | =============================================================================
|
---|
| 5 | */
|
---|
| 6 |
|
---|
[6262b5c] | 7 | #pragma once
|
---|
| 8 |
|
---|
| 9 | #include "stdint.h"
|
---|
| 10 |
|
---|
[8c8b4e5] | 11 | typedef void (*vtchar)(volatile uint16_t *obj, uint16_t fg, uint16_t bg, int16_t row, int16_t col, int8_t *buf);
|
---|
[0170798] | 12 | typedef void (*vtcurs)(void);
|
---|
| 13 |
|
---|
[6262b5c] | 14 | /*
|
---|
| 15 | =============================================================================
|
---|
[526a993] | 16 | external variables
|
---|
[6262b5c] | 17 | =============================================================================
|
---|
| 18 | */
|
---|
| 19 |
|
---|
| 20 | extern int8_t vtlin1[];
|
---|
| 21 | extern int8_t vtlin2[];
|
---|
| 22 | extern int8_t vtlin3[];
|
---|
| 23 |
|
---|
| 24 | /*
|
---|
| 25 | =============================================================================
|
---|
[526a993] | 26 | external functions
|
---|
[6262b5c] | 27 | =============================================================================
|
---|
| 28 | */
|
---|
| 29 |
|
---|
| 30 | extern void vtcxupd(void);
|
---|
| 31 | extern void vtcyupd(void);
|
---|
[8c8b4e5] | 32 | extern void vtdisp(volatile uint16_t *obj, uint16_t fg, uint16_t bg, int16_t row, int16_t col, int8_t *buf);
|
---|
[432327d] | 33 | extern void vtsetup(volatile uint16_t *obj, vtchar dsp, int16_t col, int8_t *ptr, int16_t tr, int16_t tc, vtcurs adv, vtcurs bsp, vtcurs cup, vtcurs cdn, vtcurs stop, int16_t fg, int16_t bg);
|
---|
[6262b5c] | 34 | extern int16_t vtyper(void);
|
---|
Note:
See
TracBrowser
for help on using the repository browser.