AAX SDK 2.6.1
Avid Audio Extensions Development Kit
Loading...
Searching...
No Matches
AAX_IHostServices.h
Go to the documentation of this file.
1/*================================================================================================*/
2/*
3 *
4 * Copyright 2014-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
19/*================================================================================================*/
20
21
22#ifndef AAX_IHOSTSERVICES_H
23#define AAX_IHOSTSERVICES_H
24
25#include "AAX.h"
26
35{
36public:
37
38 virtual ~AAX_IHostServices() {}
39
58 virtual AAX_Result HandleAssertFailure ( const char * iFile, int32_t iLine, const char * iNote, /* AAX_EAssertFlags */ int32_t iFlags ) const = 0;
66 virtual AAX_Result Trace ( int32_t iPriority, const char * iMessage ) const = 0;
84 virtual AAX_Result StackTrace ( int32_t iTracePriority, int32_t iStackTracePriority, const char * iMessage ) const = 0;
85};
86
87#endif // #ifndef AAX_IHOSTSERVICES_H
Various utility definitions for AAX.
int32_t AAX_Result
Definition: AAX.h:334
Interface to diagnostic and debugging services provided by the AAX host.
Definition: AAX_IHostServices.h:35
virtual AAX_Result HandleAssertFailure(const char *iFile, int32_t iLine, const char *iNote, int32_t iFlags) const =0
Handle an assertion failure.
virtual AAX_Result StackTrace(int32_t iTracePriority, int32_t iStackTracePriority, const char *iMessage) const =0
Log a trace message or a stack trace.
virtual ~AAX_IHostServices()
Definition: AAX_IHostServices.h:38
virtual AAX_Result Trace(int32_t iPriority, const char *iMessage) const =0
Log a trace message.