diff options
author | cbdev <cb@cbcdn.com> | 2017-06-04 03:24:09 +0200 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2017-06-04 03:24:09 +0200 |
commit | bae15293ddc859a1ea426f15e7fa476f71ece020 (patch) | |
tree | 086c8967cb9a81886336799b860e3cad4286f775 | |
parent | 5d0ee3b301ca012c81adbf57042f7054ee45808c (diff) | |
download | midimonster-bae15293ddc859a1ea426f15e7fa476f71ece020.tar.gz midimonster-bae15293ddc859a1ea426f15e7fa476f71ece020.tar.bz2 midimonster-bae15293ddc859a1ea426f15e7fa476f71ece020.zip |
Add additional function prototypes
-rw-r--r-- | midimonster.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/midimonster.h b/midimonster.h index 86c2d30..f15d39c 100644 --- a/midimonster.h +++ b/midimonster.h @@ -16,6 +16,8 @@ typedef struct _backend_channel* (*mmbackend_parse_channel)(struct _backend_inst typedef int (*mmbackend_configure)(char* option, char* value); typedef int (*mmbackend_configure_instance)(struct _backend_instance* instance, char* option, char* value); typedef int (*mmbackend_process_fd)(size_t fds, int* fd, void** impl); +typedef int (*mmbackend_start)(); +typedef uint32_t (*mmbackend_max_interval)(); typedef int (*mmbackend_shutdown)(); typedef struct _channel_value { |