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
|
Rev | Line | |
---|
[526a993] | 1 | /*
|
---|
| 2 | =============================================================================
|
---|
| 3 | glcinit.c -- external declarations
|
---|
| 4 | =============================================================================
|
---|
| 5 | */
|
---|
| 6 |
|
---|
[6262b5c] | 7 | #pragma once
|
---|
| 8 |
|
---|
| 9 | #include "stdint.h"
|
---|
| 10 |
|
---|
| 11 | /*
|
---|
| 12 | =============================================================================
|
---|
[526a993] | 13 | external variables
|
---|
[6262b5c] | 14 | =============================================================================
|
---|
| 15 | */
|
---|
| 16 |
|
---|
[bf89cfb] | 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;
|
---|
[6262b5c] | 28 |
|
---|
| 29 | /*
|
---|
| 30 | =============================================================================
|
---|
[526a993] | 31 | external functions
|
---|
[6262b5c] | 32 | =============================================================================
|
---|
| 33 | */
|
---|
| 34 |
|
---|
[bf89cfb] | 35 | extern int16_t GLCcrc(int16_t row, int16_t col);
|
---|
[6262b5c] | 36 | extern void GLCcurs(int16_t crs);
|
---|
[bf89cfb] | 37 | extern int16_t GLCcxy(int16_t x, int16_t y);
|
---|
[6262b5c] | 38 | extern void GLCdisp(int16_t dsp, int16_t crs, int16_t blk1, int16_t blk2, int16_t blk3);
|
---|
| 39 | extern void GLCinit(void);
|
---|
[bf89cfb] | 40 | extern void GLCtext(int16_t row, int16_t col, int8_t *s);
|
---|
[6262b5c] | 41 | extern void GLCwrts(int8_t *s);
|
---|
Note:
See
TracBrowser
for help on using the repository browser.