AAX SDK  2.1.1
Avid Audio Extensions Development Kit
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
AAX_IACFEffectDirectData.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 Technolgy, INC.
13  *
14  */
15 
22 /*================================================================================================*/
23 
24 
25 #ifndef AAX_IACFEFFECTDIRECTDATA_H
26 #define AAX_IACFEFFECTDIRECTDATA_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 
37 
48 {
49 public:
50 
62  virtual AAX_Result Initialize ( IACFUnknown * iController ) = 0;
69  virtual AAX_Result Uninitialize () = 0;
71 
72 
104  virtual AAX_Result TimerWakeup (
105  IACFUnknown * iDataAccessInterface ) = 0;
107 };
108 
109 #ifdef __clang__
110 #pragma clang diagnostic pop
111 #endif
112 
113 #endif //AAX_IACFEFFECTDIRECTDATA_H
Various utility definitions for AAX.
COM compatible IUnknown C++ interface.
Definition: AAX_ACFInterface.dox:231
int32_t AAX_Result
Definition: AAX.h:118
Optional interface for direct access to a plug-in's alg memory.
Definition: AAX_IACFEffectDirectData.h:47
virtual AAX_Result Initialize(IACFUnknown *iController)=0
Main initialization.
virtual AAX_Result TimerWakeup(IACFUnknown *iDataAccessInterface)=0
Periodic wakeup callback for idle-time operations.
virtual AAX_Result Uninitialize()=0
Main uninitialization.