AAX SDK  2.4.1
Avid Audio Extensions Development Kit
AAX_Init.h
Go to the documentation of this file.
1 /*================================================================================================*/
2 /*
3  *
4  * Copyright 2013-2017 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 
23 /*================================================================================================*/
24 
25 
26 #include "AAX.h"
27 #include "acfbasetypes.h"
28 
29 class IACFUnknown;
30 class IACFPluginDefinition;
31 class IACFComponentDefinition;
32 
33 
49 AAX_Result AAXRegisterPlugin(IACFUnknown * pUnkHost, IACFPluginDefinition **ppPluginDefinition);
50 
59 AAX_Result AAXRegisterComponent (IACFUnknown * pUnkHost, acfUInt32 index, IACFComponentDefinition **ppComponentDefinition);
60 
70 AAX_Result AAXGetClassFactory (IACFUnknown * pUnkHost, const acfCLSID& clsid, const acfIID& iid, void** ppOut);
71 
82 
93 
104 
114 AAX_Result AAXGetSDKVersion( acfUInt64 *oSDKVersion );
Various utility definitions for AAX.
int32_t AAX_Result
Definition: AAX.h:337
AAX_Result AAXRegisterComponent(IACFUnknown *pUnkHost, acfUInt32 index, IACFComponentDefinition **ppComponentDefinition)
Registers a specific component in the DLL.
AAX_Result AAXStartup(IACFUnknown *pUnkHost)
DLL initialization routine.
AAX_Result AAXCanUnloadNow(IACFUnknown *pUnkHost)
Determines whether or not the host may unload the DLL.
AAX_Result AAXGetSDKVersion(acfUInt64 *oSDKVersion)
Returns the DLL's SDK version.
AAX_Result AAXShutdown(IACFUnknown *pUnkHost)
DLL shutdown routine.
AAX_Result AAXGetClassFactory(IACFUnknown *pUnkHost, const acfCLSID &clsid, const acfIID &iid, void **ppOut)
Gets the factory for a given class ID.
AAX_Result AAXRegisterPlugin(IACFUnknown *pUnkHost, IACFPluginDefinition **ppPluginDefinition)
The main plug-in registration method.
Definition: AAX_ACFInterface.doxygen:212
COM compatible IUnknown C++ interface.
Definition: AAX_ACFInterface.doxygen:248