blob: e73dc6021c52d88a9732d3e72b2569031ad8daaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
private static final ALExtProcAddressTable alExtProcAddressTable;
static {
alExtProcAddressTable = new ALExtProcAddressTable();
if(null==alExtProcAddressTable) {
throw new RuntimeException("Couldn't instantiate ALExtProcAddressTable");
}
alExtProcAddressTable.reset(ALImpl.alDynamicLookupHelper);
}
public static ALExtProcAddressTable getALExtProcAddressTable() { return alExtProcAddressTable; }
|