misc/libopenalbridge/tester.c
author koda
Mon, 22 Aug 2011 22:17:52 +0200
changeset 5658 76220933369f
parent 3697 d5b30d6373fc
permissions -rw-r--r--
apparently sdl doesn't work anymore on ios < 3.2 so it is worth to take the leap and upgrade the minimum os to 4.0, so that we can use new apis (like imageio from sdl_image)

#include <stdio.h>
#include "openalbridge.h"

int main (int argc, int **argv) {

    openal_init();

    openal_close();

    return 0;
}