Last change
on this file since d60f436 was bf89cfb, checked in by Thomas Lopatic <thomas@…>, 7 years ago |
No more warnings in vlib.
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
Line | |
---|
1 | /*
|
---|
2 | =============================================================================
|
---|
3 | glcinit.c -- external declarations
|
---|
4 | =============================================================================
|
---|
5 | */
|
---|
6 |
|
---|
7 | #pragma once
|
---|
8 |
|
---|
9 | #include "stdint.h"
|
---|
10 |
|
---|
11 | /*
|
---|
12 | =============================================================================
|
---|
13 | external variables
|
---|
14 | =============================================================================
|
---|
15 | */
|
---|
16 |
|
---|
17 | extern uint8_t glc_is1[];
|
---|
18 | extern uint8_t glc_is2[];
|
---|
19 | extern int32_t lcdbase;
|
---|
20 | extern int16_t lcdbit;
|
---|
21 | extern int16_t lcdcol;
|
---|
22 | extern int16_t lcdctl1;
|
---|
23 | extern int16_t lcdctl2;
|
---|
24 | extern int32_t lcdcurs;
|
---|
25 | extern int16_t lcdrow;
|
---|
26 | extern int16_t lcdx;
|
---|
27 | extern int16_t lcdy;
|
---|
28 |
|
---|
29 | /*
|
---|
30 | =============================================================================
|
---|
31 | external functions
|
---|
32 | =============================================================================
|
---|
33 | */
|
---|
34 |
|
---|
35 | extern int16_t GLCcrc(int16_t row, int16_t col);
|
---|
36 | extern void GLCcurs(int16_t crs);
|
---|
37 | extern int16_t GLCcxy(int16_t x, int16_t y);
|
---|
38 | extern void GLCdisp(int16_t dsp, int16_t crs, int16_t blk1, int16_t blk2, int16_t blk3);
|
---|
39 | extern void GLCinit(void);
|
---|
40 | extern void GLCtext(int16_t row, int16_t col, int8_t *s);
|
---|
41 | extern void GLCwrts(int8_t *s);
|
---|
Note:
See
TracBrowser
for help on using the repository browser.