summaryrefslogtreecommitdiff
path: root/windows
diff options
context:
space:
mode:
authorFilipe Coelho <falktx@falktx.com>2019-03-18 08:33:50 +0100
committerGitHub <noreply@github.com>2019-03-18 08:33:50 +0100
commit59550f67ee357c82886816391aaeefd6448e8eb7 (patch)
treedc7a7a6714975d8ccda2f8da55064a7b2d4eda50 /windows
parentbb3f5cb2963dc74ba045a1553e05f755af8623cc (diff)
downloadjack2-59550f67ee357c82886816391aaeefd6448e8eb7.tar.gz
Fix client UUID gen, and some warnings (#440)
* Fix generation of client uuid Signed-off-by: falkTX <falktx@falktx.com> * Remove all client properties when removed; Cleanup a few things Signed-off-by: falkTX <falktx@falktx.com> * Make all uuid function arguments use jack_uuid_t type; Fix warnings Signed-off-by: falkTX <falktx@falktx.com> * Rework uuids to never be int, more cleanup Signed-off-by: falkTX <falktx@falktx.com>
Diffstat (limited to 'windows')
-rw-r--r--windows/JackWinNamedPipeClientChannel.cpp2
-rw-r--r--windows/JackWinNamedPipeClientChannel.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/windows/JackWinNamedPipeClientChannel.cpp b/windows/JackWinNamedPipeClientChannel.cpp
index 8d94b9e5..64c56102 100644
--- a/windows/JackWinNamedPipeClientChannel.cpp
+++ b/windows/JackWinNamedPipeClientChannel.cpp
@@ -38,7 +38,7 @@ JackWinNamedPipeClientChannel::~JackWinNamedPipeClientChannel()
delete fRequest;
}
-int JackWinNamedPipeClientChannel::Open(const char* server_name, const char* name, int uuid, char* name_res, JackClient* client, jack_options_t options, jack_status_t* status)
+int JackWinNamedPipeClientChannel::Open(const char* server_name, const char* name, jack_uuid_t uuid, char* name_res, JackClient* client, jack_options_t options, jack_status_t* status)
{
int result = 0;
jack_log("JackWinNamedPipeClientChannel::Open name = %s", name);
diff --git a/windows/JackWinNamedPipeClientChannel.h b/windows/JackWinNamedPipeClientChannel.h
index 6542399d..298cb5c2 100644
--- a/windows/JackWinNamedPipeClientChannel.h
+++ b/windows/JackWinNamedPipeClientChannel.h
@@ -49,7 +49,7 @@ class JackWinNamedPipeClientChannel : public JackGenericClientChannel, public Ja
JackWinNamedPipeClientChannel();
virtual ~JackWinNamedPipeClientChannel();
- int Open(const char* server_name, const char* name, int uuid, char* name_res, JackClient* client, jack_options_t options, jack_status_t* status);
+ int Open(const char* server_name, const char* name, jack_uuid_t uuid, char* name_res, JackClient* client, jack_options_t options, jack_status_t* status);
void Close();
int Start();