diff options
Diffstat (limited to 'usr.bin/aucat/amsg.h')
-rw-r--r-- | usr.bin/aucat/amsg.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/aucat/amsg.h b/usr.bin/aucat/amsg.h index 7536f99c7b9..9492f2bb8d1 100644 --- a/usr.bin/aucat/amsg.h +++ b/usr.bin/aucat/amsg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: amsg.h,v 1.10 2009/08/28 06:37:06 ratchov Exp $ */ +/* $OpenBSD: amsg.h,v 1.11 2009/10/17 10:55:43 ratchov Exp $ */ /* * Copyright (c) 2008 Alexandre Ratchov <alex@caoua.org> * @@ -89,7 +89,9 @@ struct amsg { #define AMSG_MIDIOUT 0x8 /* MIDI thru output */ #define AMSG_MIXER 0x10 /* MIDI mixer */ uint16_t proto; /* protocol type */ - uint8_t reserved1[6]; /* for future use */ +#define AMSG_VERSION 0 + uint8_t version; /* protocol version */ + uint8_t reserved1[5]; /* for future use */ char opt[12]; /* profile name */ char who[12]; /* hint for leases */ } hello; |