diff options
Diffstat (limited to 'common/JackDriver.h')
-rw-r--r-- | common/JackDriver.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/JackDriver.h b/common/JackDriver.h index 6b80dc33..83f7e250 100644 --- a/common/JackDriver.h +++ b/common/JackDriver.h @@ -140,6 +140,7 @@ class SERVER_EXPORT JackDriver : public JackDriverClientInterface void NotifyXRun(jack_time_t callback_usecs, float delayed_usecs); // XRun notification sent by the driver void NotifyBufferSize(jack_nframes_t buffer_size); // BufferSize notification sent by the driver void NotifySampleRate(jack_nframes_t sample_rate); // SampleRate notification sent by the driver + void NotifyFailure(int code, const char* reason); // Failure notification sent by the driver public: @@ -199,7 +200,7 @@ class SERVER_EXPORT JackDriver : public JackDriverClientInterface virtual int SetBufferSize(jack_nframes_t buffer_size); virtual int SetSampleRate(jack_nframes_t sample_rate); - virtual int ClientNotify(int refnum, const char* name, int notify, int sync, int value1, int value2); + virtual int ClientNotify(int refnum, const char* name, int notify, int sync, const char* message, int value1, int value2); virtual JackClientControl* GetClientControl() const; virtual bool IsRealTime() const; |