#defines



MIDIThruConnectionParamsSize


Returns the size of a MIDIThruConnectionParams.

#define MIDIThruConnectionParamsSize(
    ptr) \ (
    sizeof(
    MIDIThruConnectionParams) + (
    ptr)->numControlTransforms *sizeof(
    MIDIControlTransform) \ + (
    ptr)->numMaps *sizeof(
    MIDIValueMap)) 
Discussion

Accounts for the variable-length elements in the structure and returns its true size in bytes.

(Last Updated February 25, 2005)