Changeset 0170798 in buchla-68k for ram/vtyper.x


Ignore:
Timestamp:
07/11/2017 05:46:49 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
4d04f41
Parents:
7af8be4
Message:

Added last missing function pointer prototypes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ram/vtyper.x

    r7af8be4 r0170798  
    88
    99#include "stdint.h"
     10
     11typedef void            (*vtchar)(uint16_t *obj, uint16_t fg, uint16_t bg, int16_t row, int16_t col, int8_t *buf);
     12typedef void            (*vtcurs)(void);
    1013
    1114/*
     
    2831extern  void            vtcyupd(void);
    2932extern  void            vtdisp(uint16_t *obj, uint16_t fg, uint16_t bg, int16_t row, int16_t col, int8_t *buf);
    30 extern  void            vtsetup(uint16_t *obj, int16_t (*dsp)(), int16_t col, int8_t *ptr, int16_t tr, int16_t tc, int16_t (*adv)(), int16_t (*bsp)(), int16_t (*cup)(), int16_t (*cdn)(), int16_t (*stop)(), uint16_t fg, uint16_t bg);
     33extern  void            vtsetup(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, uint16_t fg, uint16_t bg);
    3134extern  int16_t         vtyper(void);
Note: See TracChangeset for help on using the changeset viewer.