From e113228f69b40a2b2729238e85072d6518b40b1f Mon Sep 17 00:00:00 2001 From: kevin Date: Sun, 31 Jan 2021 11:08:36 -0500 Subject: [PATCH] cwMidiDecls.h : Updated comments. --- cwMidiDecls.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cwMidiDecls.h b/cwMidiDecls.h index b606cf8..7e2f2cd 100644 --- a/cwMidiDecls.h +++ b/cwMidiDecls.h @@ -17,12 +17,12 @@ namespace cw typedef struct packet_str { - void* cbDataPtr; // application supplied reference value from mdParserCreate() - unsigned devIdx; // the device the msg originated from - unsigned portIdx; // the port index on the source device - msg_t* msgArray; // pointer to an array of 'msgCnt' mdMsg records or NULL if sysExMsg is non-NULL - uint8_t* sysExMsg; // pointer to a sys-ex msg or NULL if msgArray is non-NULL (see note below) - unsigned msgCnt; // count of mdMsg records or sys-ex bytes + void* cbDataPtr; // Application supplied reference value from mdParserCreate() + unsigned devIdx; // The device the msg originated from + unsigned portIdx; // The port index on the source device + msg_t* msgArray; // Pointer to an array of 'msgCnt' mdMsg records or NULL if sysExMsg is non-NULL + uint8_t* sysExMsg; // Pointer to a sys-ex msg or NULL if msgArray is non-NULL (see note below) + unsigned msgCnt; // Count of mdMsg records or sys-ex bytes } packet_t; } }