Add missing prototypes.

This commit is contained in:
Alexandre Ratchov 2019-08-29 09:18:24 +02:00
parent eee6a97114
commit 6a68d29389
2 changed files with 2 additions and 0 deletions

View File

@ -59,6 +59,7 @@ struct dev *dev_new(char *, struct aparams *, unsigned int, unsigned int,
unsigned int, unsigned int, unsigned int, unsigned int);
void dev_adjpar(struct dev *, int, int, int);
int dev_open(struct dev *);
void dev_exitall(struct dev *);
void dev_close(struct dev *);
int dev_ref(struct dev *);
void dev_unref(struct dev *);

View File

@ -33,6 +33,7 @@ void port_imsg(void *, unsigned char *, int);
void port_omsg(void *, unsigned char *, int);
void port_fill(void *, int);
void port_exit(void *);
void port_exitall(struct port *);
struct midiops port_midiops = {
port_imsg,