AAX SDK 2.6.1
Avid Audio Extensions Development Kit
Loading...
Searching...
No Matches
AAX_IMIDINode.h
Go to the documentation of this file.
1/*================================================================================================*/
2/*
3 * Copyright 2014-2017, 2023 Avid Technology, Inc.
4 * All rights reserved.
5 *
6 * CONFIDENTIAL: this document contains confidential information of Avid. Do
7 * not disclose to any third party. Use of the information contained in this
8 * document is subject to an Avid SDK license.
9 *
10 */
11
19/*================================================================================================*/
21#pragma once
22#ifndef AAX_IMIDINODE_H
23#define AAX_IMIDINODE_H
25
26#include "AAX.h"
27#include "AAX_ITransport.h"
28
37{
38public:
39 virtual ~AAX_IMIDINode() {}
40
46
63
75};
76
77
79#endif // AAX_IMIDINODE_H
Various utility definitions for AAX.
int32_t AAX_Result
Definition: AAX.h:334
The interface for query ProTools transport information.
Packet structure for MIDI data.
Definition: AAX.h:636
MIDI stream data structure used by AAX_IMIDINode.
Definition: AAX.h:661
Interface for accessing information in a MIDI node.
Definition: AAX_IMIDINode.h:37
virtual AAX_ITransport * GetTransport()=0
Returns a transport object.
virtual AAX_CMidiStream * GetNodeBuffer()=0
Returns a MIDI stream data structure.
virtual AAX_Result PostMIDIPacket(AAX_CMidiPacket *packet)=0
Posts an AAX_CMidiPacket to an output MIDI node.
virtual ~AAX_IMIDINode()
Definition: AAX_IMIDINode.h:39
Interface to information about the host's transport state.
Definition: AAX_ITransport.h:53