repo.or.cz
/
bcl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixed function names that somehow got mixed up.
[bcl.git]
/
bcl.h
blob
c376831090d60f754988c49b6d2eedf747d4cb18
1
#ifndef _bcl_h
2
#define _bcl_h
3
4
#ifdef __WIN32__
5
#ifdef BUILDBCL
6
# define DECLSPEC __declspec(dllexport)
7
#else
8
# define DECLSPEC __declspec(dllimport)
9
#endif
10
#else
11
#define DECLSPEC
12
#endif
13
14
#include
"environment.h"
15
#include
"keyboard.h"
16
#include
"timing.h"
17
#include
"audio.h"
18
#include
"speech.h"
19
#include
"3daudio.h"
20
21
#endif