FreeCalypso > hg > fc-magnetite
comparison src/cs/services/audio/audio_bgd/audio_bgd_macro_i.h @ 519:838eeafb0051
Main and Audio source directories lowercased
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 22 Jul 2018 07:41:05 +0000 |
parents | src/cs/services/Audio/Audio_bgd/audio_bgd_macro_i.h@945cf7f506b2 |
children |
comparison
equal
deleted
inserted
replaced
518:4b7e0dba42f6 | 519:838eeafb0051 |
---|---|
1 /********************************************************************************/ | |
2 /* */ | |
3 /* File Name: audio_bgd_macro_i.h */ | |
4 /* */ | |
5 /* Purpose: This header contains the generic structures and constants */ | |
6 /* that are used by the AUDIO BACKGROUND layer. */ | |
7 /* */ | |
8 /* Version 1 */ | |
9 /* */ | |
10 /* Date Modification */ | |
11 /* ------------------------------------ */ | |
12 /* 19 June 2003 Creation */ | |
13 /* */ | |
14 /* Author Frederic Turgis */ | |
15 /* */ | |
16 /* (C) Copyright 2001 by Texas Instruments Incorporated, All Rights Reserved. */ | |
17 /* */ | |
18 /********************************************************************************/ | |
19 | |
20 #include "rv/rv_defined_swe.h" | |
21 | |
22 #ifdef RVM_AUDIO_BGD_SWE | |
23 | |
24 #ifndef _AUDIO_BGD_MACRO_I_H | |
25 #define _AUDIO_BGD_MACRO_I_H | |
26 | |
27 #include "rv/rv_trace.h" | |
28 #include "rvf/rvf_api.h" | |
29 #include "rvm/rvm_use_id_list.h" | |
30 | |
31 #ifdef __cplusplus | |
32 extern "C" | |
33 { | |
34 #endif | |
35 | |
36 /* | |
37 ** AUDIO trace macros | |
38 */ | |
39 #define AUDIO_BGD_SEND_TRACE(string,type) rvf_send_trace (string,(sizeof(string)-1),NULL_PARAM,type,AUDIO_BGD_USE_ID) | |
40 #define AUDIO_BGD_SEND_TRACE_PARAM(string,param,type) rvf_send_trace (string,(sizeof(string)-1),(UINT32)param,type,AUDIO_BGD_USE_ID) | |
41 #define AUDIO_BGD_TRACE_WARNING(string) rvf_send_trace (string,(sizeof(string)-1),NULL_PARAM,RV_TRACE_LEVEL_WARNING,AUDIO_BGD_USE_ID) | |
42 | |
43 #ifdef __cplusplus | |
44 } | |
45 #endif | |
46 | |
47 #endif // #ifndef _AUDIO_BGD_MACRO_I_H | |
48 | |
49 #endif // #ifdef RVM_AUDIO_BGD_SWE |