AAX SDK  2.1.1
Avid Audio Extensions Development Kit
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
AAX_IACFPrivateDataAccess.h
Go to the documentation of this file.
1 /*================================================================================================*/
2 /*
3  *
4  * Copyright 2013 by Avid Technology, Inc.
5  * All rights reserved.
6  *
7  * CONFIDENTIAL: This document contains confidential information. Do not
8  * read or examine this document unless you are an Avid Technology employee
9  * or have signed a non-disclosure agreement with Avid Technology which protects
10  * the confidentiality of this document. DO NOT DISCLOSE ANY INFORMATION
11  * CONTAINED IN THIS DOCUMENT TO ANY THIRD-PARTY WITHOUT THE PRIOR WRITTEN CONSENT
12  * OF Avid Technology, INC.
13  *
14  */
15 
22 /*================================================================================================*/
23 
24 
25 #ifndef _AAX_IACFPrivateDATAACCESS_H_
26 #define _AAX_IACFPrivateDATAACCESS_H_
27 
28 #include "AAX.h"
29 
30 #ifdef __clang__
31 #pragma clang diagnostic push
32 #pragma clang diagnostic ignored "-Wnon-virtual-dtor"
33 #endif
34 
35 #include "acfunknown.h"
36 
43 {
44 public:
45 
46  virtual AAX_Result ReadPortDirect( AAX_CFieldIndex iFieldIndex, const uint32_t iOffset, const uint32_t iSize, void* oBuffer ) = 0;
47  virtual AAX_Result WritePortDirect( AAX_CFieldIndex iFieldIndex, const uint32_t iOffset, const uint32_t iSize, const void* iBuffer ) = 0;
48 
49 };
50 
51 #ifdef __clang__
52 #pragma clang diagnostic pop
53 #endif
54 
55 #endif // #ifndef _AAX_IACFPrivateDATAACCESS_H_
Various utility definitions for AAX.
virtual AAX_Result ReadPortDirect(AAX_CFieldIndex iFieldIndex, const uint32_t iOffset, const uint32_t iSize, void *oBuffer)=0
Read data directly from DSP at the given port.
COM compatible IUnknown C++ interface.
Definition: AAX_ACFInterface.dox:231
int32_t AAX_Result
Definition: AAX.h:118
virtual AAX_Result WritePortDirect(AAX_CFieldIndex iFieldIndex, const uint32_t iOffset, const uint32_t iSize, const void *iBuffer)=0
Write data directly to DSP at the given port.
Interface for the AAX host's data access functionality.
Definition: AAX_IACFPrivateDataAccess.h:42
AAX_CIndex AAX_CFieldIndex
Not used by AAX plug-ins (except in AAX_FIELD_INDEX macro)
Definition: AAX.h:125