File: XAudio2fx.h

package info (click to toggle)
faudio 21.02-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,576 kB
  • sloc: ansic: 25,642; cpp: 10,815; cs: 1,899; sh: 82; makefile: 21
file content (32 lines) | stat: -rw-r--r-- 594 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef FACT_CPP_XAUDIO2FX_H
#define FACT_CPP_XAUDIO2FX_H

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */

#include <stdint.h>

#ifndef XAUDIO2_VERSION
#define XAUDIO2_VERSION 7
#endif

#ifdef FAUDIOCPP_EXPORTS
#define FAUDIOCPP_API  uint32_t __stdcall
#else
#define FAUDIOCPP_API __declspec(dllimport) uint32_t __stdcall
#endif

#if XAUDIO2_VERSION >=8
FAUDIOCPP_API CreateAudioVolumeMeter(class IUnknown** ppApo);
FAUDIOCPP_API CreateAudioReverb(class IUnknown** ppApo);
#endif // XAUDIO2_VERSION >= 8



#ifdef __cplusplus
}
#endif /* __cplusplus */


#endif // FACT_CPP_XAUDIO2_H