]> git.jsancho.org Git - lugaru.git/blob - Source/fmod.h
Added newline to all the source/headers in Source.
[lugaru.git] / Source / fmod.h
1 // wrapper for FMOD to account for filename conversions in windows
2
3 #ifndef _FMODWRAPPER_H_
4 #define _FMODWRAPPER_H_
5
6 #include "fmod_header.h"
7 #include "MacCompatibility.h"
8
9
10 #ifdef WIN32
11
12 #define FSOUND_Sample_Load( a, b, c, d) FSOUND_Sample_Load( a, ConvertFileName( b), c, d, 0);
13
14 #endif
15
16
17 #endif
18