- Timestamp:
- 07/10/2017 09:48:23 AM (7 years ago)
- Branches:
- master
- Children:
- 6262b5c
- Parents:
- f7428b1
- Location:
- include
- Files:
-
- 31 edited
Legend:
- Unmodified
- Added
- Removed
-
include/all.h
rf7428b1 r5fa506d 15 15 #include "charset.h" 16 16 #include "cmeta.h" 17 #include "configs.h"18 17 #include "ctype.h" 19 18 #include "curpak.h" 20 19 #include "debug.h" 21 #include "dfltins.h"22 20 #include "errdefs.h" 23 21 #include "errno.h" … … 26 24 #include "fpu.h" 27 25 #include "fspars.h" 28 #include "glcbars.h"29 26 #include "glcdefs.h" 30 27 #include "graphdef.h" … … 32 29 #include "instdsp.h" 33 30 #include "io.h" 34 #include "knmtab.h"35 31 #include "lcdline.h" 36 32 #include "libdsp.h" … … 42 38 #include "patch.h" 43 39 #include "ptdisp.h" 44 #include "ptoftab.h"45 #include "ratio.h"46 40 #include "regs.h" 47 41 #include "scdsp.h" … … 57 51 #include "stdint.h" 58 52 #include "stdio.h" 59 #include "swrtab.h"60 53 #include "timers.h" 61 54 #include "tundsp.h" 62 55 #include "uartio.h" 63 56 #include "vsdd.h" 64 #include "wdcurtb.h"65 57 #include "wordq.h" 66 58 #include "wsdsp.h" -
include/asgdsp.h
rf7428b1 r5fa506d 7 7 8 8 #pragma once 9 9 10 #include "stdint.h" 11 #include "vsdd.h" 10 12 11 13 struct asgent { /* assignment table library entry structure */ -
include/biosdefs.h
rf7428b1 r5fa506d 7 7 8 8 #pragma once 9 9 10 #include "stdint.h" 10 11 -
include/cmeta.h
rf7428b1 r5fa506d 7 7 8 8 #pragma once 9 10 #include "stddefs.h" 9 11 10 12 #define CM_CHR(c) CMchr(c) … … 20 22 #define CM_ULIST(l) CMulist(l) 21 23 22 #define CM_OK return (QQsw = TRUE)23 #define CM_NOGO return (QQsw = FALSE)24 #define CM_OK return (QQsw = TRUE) 25 #define CM_NOGO return (QQsw = FALSE) 24 26 25 27 #define CM_DBLK if (!QQanch) while (*QQip EQ ' ') ++QQip -
include/curpak.h
rf7428b1 r5fa506d 8 8 9 9 #pragma once 10 11 #include "fields.h" 10 12 #include "stdint.h" 11 13 -
include/fields.h
rf7428b1 r5fa506d 7 7 8 8 #pragma once 9 9 10 #include "stdint.h" 10 11 -
include/fspars.h
rf7428b1 r5fa506d 7 7 8 8 #pragma once 9 10 #include "stdint.h" 9 11 10 12 #define TBUFFER 1 /* non-zero to enable track buffering */ -
include/glcdefs.h
rf7428b1 r5fa506d 7 7 8 8 #pragma once 9 10 #include "stdint.h" 9 11 10 12 #define G_INIT (int8_t)0x40 -
include/hwdefs.h
rf7428b1 r5fa506d 7 7 8 8 #pragma once 9 9 10 #include "stdint.h" 10 11 -
include/instdsp.h
rf7428b1 r5fa506d 7 7 8 8 #pragma once 9 10 #include "midas.h" 9 11 #include "stdint.h" 10 #include " midas.h"12 #include "vsdd.h" 11 13 12 14 /* --------------- Miscellaneous Instrument display definitions ------------- */ -
include/io.h
rf7428b1 r5fa506d 7 7 8 8 #pragma once 9 10 #include "fspars.h" /* file system parameters */ 9 11 #include "stdint.h" 10 #include "fspars.h" /* file system parameters */11 12 12 13 struct channel { /* channel table entry */ -
include/libdsp.h
rf7428b1 r5fa506d 9 9 10 10 #pragma once 11 11 12 #include "stdint.h" 12 13 -
include/menu.h
rf7428b1 r5fa506d 7 7 8 8 #pragma once 9 10 #include "vsdd.h" 9 11 10 12 #define MCURSOR 1 /* cursor color */ -
include/midas.h
rf7428b1 r5fa506d 7 7 8 8 #pragma once 9 10 #include "graphdef.h" 9 11 #include "stdint.h" 12 #include "vsdd.h" 10 13 11 14 typedef void (*LPF)(int16_t _1, int16_t _2); /* pointer to a LCD panel function */ -
include/objdefs.h
rf7428b1 r5fa506d 7 7 8 8 #pragma once 9 9 10 #include "stdint.h" 10 11 -
include/patch.h
rf7428b1 r5fa506d 7 7 8 8 #pragma once 9 9 10 #include "stdint.h" 10 11 -
include/ptdisp.h
rf7428b1 r5fa506d 7 7 8 8 #pragma once 9 10 #include "midas.h" 9 11 10 12 #define OB08LOC 0 /* offset to headings */ -
include/regs.h
rf7428b1 r5fa506d 10 10 11 11 #pragma once 12 12 13 #include "stdint.h" 13 14 -
include/scdsp.h
rf7428b1 r5fa506d 7 7 8 8 #pragma once 9 10 #include "midas.h" 11 #include "vsdd.h" 9 12 10 13 #define SCOROBP 1 /* score object priority */ -
include/sclock.h
rf7428b1 r5fa506d 7 7 8 8 #pragma once 9 10 #include "hwdefs.h" 9 11 10 12 #define CK_LOCAL 0 -
include/score.h
rf7428b1 r5fa506d 7 7 8 8 #pragma once 9 9 10 #include "stdint.h" 10 11 -
include/setjmp.h
rf7428b1 r5fa506d 16 16 17 17 #pragma once 18 18 19 #include "stdint.h" 19 20 -
include/slice.h
rf7428b1 r5fa506d 7 7 8 8 #pragma once 9 9 10 #include "stdint.h" 10 11 -
include/smdefs.h
rf7428b1 r5fa506d 7 7 8 8 #pragma once 9 9 10 #include "stdint.h" 10 11 -
include/stdarg.h
rf7428b1 r5fa506d 7 7 8 8 #pragma once 9 9 10 #include "stdint.h" 10 11 11 12 typedef int8_t *va_list; 12 13 13 #define va_start(ap, last) ap = (int8_t *)&last + sizeof(last)14 #define va_arg(ap, type) (ap += sizeof (type), ap[-1])14 #define va_start(ap, last) (ap = (int8_t *)&last + sizeof last) 15 #define va_arg(ap, type) (ap += sizeof (type), ((type *)ap)[-1]) 15 16 #define va_end(ap) -
include/stddefs.h
rf7428b1 r5fa506d 8 8 9 9 #pragma once 10 10 11 #include "stdint.h" 11 12 … … 36 37 #define FOREVER for (;;) /* Infinite loop declaration */ 37 38 38 #define NULL 0/* Null pointer value */39 #define NULL ((void *)0) /* Null pointer value */ 39 40 40 41 #define TRUE 1 /* Function TRUE value */ -
include/stdio.h
rf7428b1 r5fa506d 7 7 8 8 #pragma once 9 10 #include "fspars.h" /* file system parameters */ 9 11 #include "stdint.h" 10 #include "fspars.h" /* file system parameters */11 12 12 13 #define EOF -1 -
include/tundsp.h
rf7428b1 r5fa506d 9 9 10 10 #pragma once 11 12 #include "midas.h" 13 #include "vsdd.h" 11 14 12 15 #define TUNOBJ 8 /* display object number */ -
include/vsdd.h
rf7428b1 r5fa506d 8 8 9 9 #pragma once 10 10 11 #include "stdint.h" 11 12 -
include/wordq.h
rf7428b1 r5fa506d 7 7 8 8 #pragma once 9 9 10 #include "stdint.h" 10 11 -
include/wsdsp.h
rf7428b1 r5fa506d 11 11 12 12 #pragma once 13 14 #include "midas.h" 13 15 #include "stdint.h" 14 #include "midas.h"15 16 16 17 struct wstbl { /* waveshape table library entry */
Note:
See TracChangeset
for help on using the changeset viewer.