AAX SDK 2.8.0
Avid Audio Extensions Development Kit
Loading...
Searching...
No Matches
AAX_CHostServices.h
Go to the documentation of this file.
1/*================================================================================================*/
2/*
3 *
4 * Copyright 2014-2015, 2018, 2023-2024 Avid Technology, Inc.
5 * All rights reserved.
6 *
7 * This file is part of the Avid AAX SDK.
8 *
9 * The AAX SDK is subject to commercial or open-source licensing.
10 *
11 * By using the AAX SDK, you agree to the terms of both the Avid AAX SDK License
12 * Agreement and Avid Privacy Policy.
13 *
14 * AAX SDK License: https://developer.avid.com/aax
15 * Privacy Policy: https://www.avid.com/legal/privacy-policy-statement
16 *
17 * Or: You may also use this code under the terms of the GPL v3 (see
18 * www.gnu.org/licenses).
19 *
20 * THE AAX SDK IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
21 * EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
22 * DISCLAIMED.
23 *
24 */
25
32/*================================================================================================*/
33
34
35#ifndef AAX_CHOSTSERVICES_H
36#define AAX_CHOSTSERVICES_H
37
38#include "AAX.h"
39#include "AAX_Enums.h"
40
41
42class IACFUnknown;
43
47{
48public:
49 static void Set ( IACFUnknown * pUnkHost );
50
51 static AAX_Result HandleAssertFailure ( const char * iFile, int32_t iLine, const char * iNote, /* AAX_EAssertFlags */ int32_t iFlags = AAX_eAssertFlags_Default );
52 static AAX_Result Trace ( AAX_ETracePriorityHost iPriority, const char * iMessage, ... );
53 static AAX_Result StackTrace ( AAX_ETracePriorityHost iTracePriority, AAX_ETracePriorityHost iStackTracePriority, const char * iMessage, ... );
54};
55
56
57#endif
Utility functions for byte-swapping. Used by AAX_CChunkDataParser.
AAX_ETracePriorityHost
Platform-specific tracing priorities.
Definition: AAX_Enums.h:86
@ AAX_eAssertFlags_Default
No special handler requested.
Definition: AAX_Enums.h:1388
Various utility definitions for AAX.
int32_t AAX_Result
Definition: AAX.h:347
COM compatible IUnknown C++ interface.
Definition: AAX_ACFInterface.doxygen:265
Method access to a singleton implementation of the AAX_IHostServices interface.
Definition: AAX_CHostServices.h:47
static AAX_Result HandleAssertFailure(const char *iFile, int32_t iLine, const char *iNote, int32_t iFlags=AAX_eAssertFlags_Default)
Handle an assertion failure.
static AAX_Result StackTrace(AAX_ETracePriorityHost iTracePriority, AAX_ETracePriorityHost iStackTracePriority, const char *iMessage,...)
Log a trace message or a stack trace.
static AAX_Result Trace(AAX_ETracePriorityHost iPriority, const char *iMessage,...)
Log a trace message.
static void Set(IACFUnknown *pUnkHost)