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
had a stab at my incorrect pointer code
[bcl.git]
/
bcl.h
blob
20d1b23447f3cb2f852b47bcfa86610687eb3ddd
1
#ifndef _bcl_h
2
#define _bcl_h
3
4
#ifdef __cplusplus
5
extern
"C"
{
6
#endif
7
8
#ifdef __WIN32__
9
#ifdef BUILDBCL
10
# define DECLSPEC __declspec(dllexport)
11
#else
12
# define DECLSPEC __declspec(dllimport)
13
#endif
14
#else
15
#define DECLSPEC
16
#endif
17
18
#include
"environment.h"
19
#include
"keyboard.h"
20
#include
"timing.h"
21
#include
"audio.h"
22
#include
"speech.h"
23
24
#ifdef __cplusplus
25
}
26
#endif
27
#endif