comparison src/cs/services/audio/audio_macro_i.h @ 52:1eb391057168

Main and Audio source directories lowercased
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 19 Jul 2018 22:49:10 +0000
parents src/cs/services/Audio/audio_macro_i.h@b6a5e36de839
children
comparison
equal deleted inserted replaced
51:daf96987cb39 52:1eb391057168
1 /********************************************************************************/
2 /* */
3 /* File Name: audio_macro_i.h */
4 /* */
5 /* Purpose: This header contains the generic structures and constants */
6 /* that are used by the AUDIO layer. */
7 /* */
8 /* Note: */
9 /* None. */
10 /* */
11 /* Revision History: */
12 /* 11/05/01 Francois Mazard - Stephanie Gerthoux Create */
13 /* */
14 /* (C) Copyright 2001 by Texas Instruments Incorporated, All Rights Reserved. */
15 /* */
16 /********************************************************************************/
17
18 #include "rv/rv_defined_swe.h"
19 #include "rvm/rvm_use_id_list.h"
20
21 #ifdef RVM_AUDIO_MAIN_SWE
22 #ifndef _AUDIO_MACRO_I_H
23 #define _AUDIO_MACRO_I_H
24
25 #ifdef __cplusplus
26 extern "C"
27 {
28 #endif
29
30 /*
31 ** AUDIO trace macros
32 */
33 #define AUDIO_SEND_TRACE(string,type) rvf_send_trace (string,(sizeof(string)-1),NULL_PARAM,type,AUDIO_USE_ID)
34 #define AUDIO_SEND_TRACE_PARAM(string,param,type) rvf_send_trace (string,(sizeof(string)-1),(UINT32)param,type,AUDIO_USE_ID)
35 #define AUDIO_TRACE_WARNING(string) rvf_send_trace (string,(sizeof(string)-1),NULL_PARAM,RV_TRACE_LEVEL_WARNING,AUDIO_USE_ID)
36
37 #ifdef __cplusplus
38 }
39 #endif
40
41 #endif
42
43 #endif /* #ifdef RVM_AUDIO_MAIN_SWE */