blob: 9abd941ff1887771b03c1a3cb8fe9832d7c0b1e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# This .cfg file is used to generate the ALConstants interface.
Include joal-common.cfg
Style InterfaceOnly
JavaClass ALConstants
# Factor out the OpenAL constants into their own interface
IgnoreNot ^AL_.+
# Add back in the constants the PCPP can't currently parse
# (FIXME: once it does, these lines will have to be removed)
CustomJavaCode ALConstants public static final int AL_INVALID = -1;
|