- Remove support for variables in command handlers
- Make parameter to RegisterVariable typed instead of just pointer
- Catch a bug due to wrong type passed to RegisterVariable
#include <stdio.h>
#include "openalbridge.h"
int main (int argc, int **argv) {
openal_init();
openal_close();
return 0;
}