Changeset f7428b1 in buchla-68k for include/instdsp.h


Ignore:
Timestamp:
07/10/2017 01:26:59 AM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
5fa506d
Parents:
c3aee8a
Message:

Started to rework include files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/instdsp.h

    rc3aee8a rf7428b1  
    33        instdsp.h -- instrument editor definitions
    44        Version 37 -- 1988-08-30 -- D.N. Lynx Crowe
    5 
    6         Uses definitions from:  "graphdef.h", "midas.h", "vsdd.h"
    75   =============================================================================
    86*/
     7
     8#pragma once
     9#include "stdint.h"
     10#include "midas.h"
    911
    1012/* --------------- Miscellaneous Instrument display definitions ------------- */
     
    1921#define TCPRI           15              /* text cursor priority */
    2022
    21 #define INSTFL          (V_RES3)        /* instrument display object flags */
    22 #define TCURFL          (V_RES3)        /* text cursor display flags */
     23#define INSTFL          V_RES3          /* instrument display object flags */
     24#define TCURFL          V_RES3          /* text cursor display flags */
    2325
    2426#define CBORD           9               /* color of border */
     
    197199        int16_t idhflag;                /* flags */
    198200
    199         int8_t  idhname[MAXIDLN+1];     /* instrument name */
    200         int8_t  idhcom1[MAXIDLN+1];     /* first line of comments */
    201         int8_t  idhcom2[MAXIDLN+1];     /* second line of comments */
    202         int8_t  idhcom3[MAXIDLN+1];     /* third line of comments */
     201        int8_t  idhname[MAXIDLN + 1];   /* instrument name */
     202        int8_t  idhcom1[MAXIDLN + 1];   /* first line of comments */
     203        int8_t  idhcom2[MAXIDLN + 1];   /* second line of comments */
     204        int8_t  idhcom3[MAXIDLN + 1];   /* third line of comments */
    203205
    204206        int8_t  idhcfg;                 /* configuration byte */
Note: See TracChangeset for help on using the changeset viewer.