Changeset 0c834c5 in buchla-68k for ram/idselbx.c


Ignore:
Timestamp:
07/08/2017 05:56:38 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
60288f5
Parents:
342a56f
Message:

Prototypes for global function pointers. Consistent global types.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ram/idselbx.c

    r342a56f r0c834c5  
    1515#include "instdsp.h"
    1616
    17 extern  short   (*itxput)();
     17extern  void    (*itxput)(short row, short col, char *txt, short tag);
    1818
    1919extern  void    lseg(short x1, short y1, short x2, short y2, short t);
     
    4343extern  short   pntsv, pecase, stccol, subj, submenu;
    4444
    45 extern  unsigned        temin, temax;
     45extern  short   temin, temax;
    4646
    4747extern  struct  selbox  *csbp, *curboxp;
     
    6565
    6666short   bx_null(void);
    67 short   idfnbox(short n);
     67void    idfnbox(short n);
    6868
    6969/*
     
    435435*/
    436436
    437 short idfnbox(short n)
     437void idfnbox(short n)
    438438{
    439439        register short col, i, row;
     
    453453                /* handle data entry special case for resonance in filter fn. */
    454454
    455                 if ((curfunc EQ 4) AND (row EQ 5) AND (col EQ 62))
    456                         return(enterit());
     455                if ((curfunc EQ 4) AND (row EQ 5) AND (col EQ 62)) {
     456                        enterit();
     457                        return;
     458                }
    457459
    458460                switch (pntsv) {        /* dispatch off of point select state */
     
    484486                }
    485487
    486                 return(TRUE);
     488                return;
    487489
    488490        } else if (hitbox EQ 18) {              /* configuration */
     
    491493
    492494                        wcmenu(0);
    493                         return(TRUE);
     495                        return;
    494496
    495497                } else {
    496498
    497                         return(enterit());
     499                        enterit();
     500                        return;
    498501                }
    499502/*
     
    534537                        }
    535538
    536                         return(SUCCESS);
     539                        return;
    537540
    538541                } else {
    539542
    540                         return(enterit());      /* do data entry */
     543                        enterit();      /* do data entry */
     544                        return;
    541545                }
    542546/*
     
    548552
    549553                        wcmenu(1);
    550                         return(TRUE);
     554                        return;
    551555
    552556                } else {
    553557
    554                         return(enterit());
     558                        enterit();
     559                        return;
    555560                }
    556561
     
    587592                }
    588593
    589                 return(TRUE);
     594                return;
    590595/*
    591596
     
    617622
    618623                setgc(ICURX, ICURY);            /* put cursor in center */
    619                 return(TRUE);
     624                return;
    620625        }
    621 
    622         return(FALSE);
    623 }
     626}
Note: See TracChangeset for help on using the changeset viewer.