AAX SDK 2.6.1
Avid Audio Extensions Development Kit
Loading...
Searching...
No Matches
AAX_IACFHostServices.h
Go to the documentation of this file.
1/*================================================================================================*/
2/*
3 *
4 * Copyright 2013-2015, 2018, 2023 Avid Technology, Inc.
5 * All rights reserved.
6 *
7 * CONFIDENTIAL: this document contains confidential information of Avid. Do
8 * not disclose to any third party. Use of the information contained in this
9 * document is subject to an Avid SDK license.
10 *
11 */
12
17/*================================================================================================*/
18
19
20#ifndef AAX_IACFHOSTSERVICES_H
21#define AAX_IACFHOSTSERVICES_H
22
23#include "AAX.h"
24
25#ifdef __clang__
26#pragma clang diagnostic push
27#pragma clang diagnostic ignored "-Wnon-virtual-dtor"
28#endif
29
30#include "acfunknown.h"
31
35{
36public:
56 virtual AAX_Result Assert ( const char * iFile, int32_t iLine, const char * iNote ) = 0;
57
58 virtual AAX_Result Trace ( int32_t iPriority, const char * iMessage ) = 0;
59};
60
64{
65public:
66 virtual AAX_Result StackTrace ( int32_t iTracePriority, int32_t iStackTracePriority, const char * iMessage ) = 0;
67};
68
72{
73public:
74 virtual AAX_Result HandleAssertFailure ( const char * iFile, int32_t iLine, const char * iNote, /* AAX_EAssertFlags */ int32_t iFlags ) const = 0;
75};
76
77#ifdef __clang__
78#pragma clang diagnostic pop
79#endif
80
81#endif // #ifndef AAX_IACFHOSTSERVICES_H
Various utility definitions for AAX.
int32_t AAX_Result
Definition: AAX.h:334
COM compatible IUnknown C++ interface.
Definition: AAX_ACFInterface.doxygen:252
Versioned interface to diagnostic and debugging services provided by the AAX host.
Definition: AAX_IACFHostServices.h:35
virtual AAX_Result Assert(const char *iFile, int32_t iLine, const char *iNote)=0
virtual AAX_Result Trace(int32_t iPriority, const char *iMessage)=0
Log a trace message.
V2 of versioned interface to diagnostic and debugging services provided by the AAX host.
Definition: AAX_IACFHostServices.h:64
virtual AAX_Result StackTrace(int32_t iTracePriority, int32_t iStackTracePriority, const char *iMessage)=0
Log a trace message or a stack trace.
V3 of versioned interface to diagnostic and debugging services provided by the AAX host.
Definition: AAX_IACFHostServices.h:72
virtual AAX_Result HandleAssertFailure(const char *iFile, int32_t iLine, const char *iNote, int32_t iFlags) const =0
Handle an assertion failure.