cwMidiDecls.h : Updated comments.

This commit is contained in:
kevin 2021-01-31 11:08:36 -05:00
parent ce1b4cea6b
commit e113228f69

View File

@ -17,12 +17,12 @@ namespace cw
typedef struct packet_str typedef struct packet_str
{ {
void* cbDataPtr; // application supplied reference value from mdParserCreate() void* cbDataPtr; // Application supplied reference value from mdParserCreate()
unsigned devIdx; // the device the msg originated from unsigned devIdx; // The device the msg originated from
unsigned portIdx; // the port index on the source device 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 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) 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 unsigned msgCnt; // Count of mdMsg records or sys-ex bytes
} packet_t; } packet_t;
} }
} }