-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathLCDLOAD.H
More file actions
26 lines (17 loc) · 863 Bytes
/
LCDLOAD.H
File metadata and controls
26 lines (17 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*------------------------------------------------------------------*/
/*
Williams Entertainment Sound System
by Scott Patterson
Application Programming Interface Routines:
- digital (in linear .LCD file) load functions
*/
/*------------------------------------------------------------------*/
#define SAMPLE_RECORD_SIZE 100
typedef struct SampleBlock {
unsigned short numsamps;
unsigned short sampindx[SAMPLE_RECORD_SIZE];
unsigned short samppos[SAMPLE_RECORD_SIZE];
}SampleBlock;
extern int wess_dig_lcd_loader_init(void *input_pm_stat);
extern void wess_dig_set_sample_position(int samplenum, char *samplepos);
extern int wess_dig_lcd_load(char *lcdfilename,void *memptr,SampleBlock *sampblk, int override);