home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
files
/
348.lha
/
chatterbox_v1.0
/
sources
/
chatter.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-02-14
|
511b
|
32 lines
/* define things I chatter about */
#define GAB_DISKOUT 0
#define GAB_DISKIN 1
#define GAB_WINDOWACTIVE 2
#define GAB_WINDOWINACTIVE 3
#define GAB_EVERY_SO_OFTEN 4
#define GAB_NEW_PREFERENCES 5
#define GAB_BEEP 6
#define N_GAB_TYPES 7
#define MAX_GAB_ITEMS 32
struct gab_info
{
int n_gab_items;
int next_new_gab_item;
int next_play_gab_item;
Sample *Samples[MAX_GAB_ITEMS];
};
#define MAX_DEFERRED_FILES 256
struct deferred_load_info
{
char *filename[MAX_DEFERRED_FILES];
int n_deferred_items;
};