Changeset 0170798 in buchla-68k for ram/swinit.c
- Timestamp:
- 07/11/2017 05:46:49 PM (7 years ago)
- Branches:
- master
- Children:
- 4d04f41
- Parents:
- 7af8be4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ram/swinit.c
r7af8be4 r0170798 35 35 void (*premove)(void); /* cursor pre-move function */ 36 36 void (*pstmove)(void); /* cursor post-move function */ 37 void (*vt_adv)(void); /* vtyper data cursor advance function */ 38 void (*vt_bsp)(void); /* vtyper data cursor backspace function */ 39 void (*vt_cdn)(void); /* vtyper data cursor down function */ 40 void (*vt_cup)(void); /* vtyper data cursor up function */ 41 void (*vt_dsp)(uint16_t *obj, uint16_t fg, uint16_t bg, int16_t row, int16_t col, int8_t *buf); 42 /* vtyper display function */ 43 void (*vt_stop)(void); /* vtyper exit function */ 37 vtcurs vt_adv; /* vtyper data cursor advance function */ 38 vtcurs vt_bsp; /* vtyper data cursor backspace function */ 39 vtcurs vt_cdn; /* vtyper data cursor down function */ 40 vtcurs vt_cup; /* vtyper data cursor up function */ 41 vtchar vt_dsp; /* vtyper display function */ 42 vtcurs vt_stop; /* vtyper exit function */ 44 43 void (*x_key)(void); /* X key processor */ 45 44 void (*xy_dn)(void); /* cursor - finger on (down) */
Note:
See TracChangeset
for help on using the changeset viewer.