diff OpenAL32/Include/alThunk.h @ 0:f9476ff7637e

initial forking of open-al to create multiple listeners
author Robert McIntyre <rlm@mit.edu>
date Tue, 25 Oct 2011 13:02:31 -0700
parents
children
line wrap: on
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/OpenAL32/Include/alThunk.h	Tue Oct 25 13:02:31 2011 -0700
     1.3 @@ -0,0 +1,20 @@
     1.4 +#ifndef ALTHUNK_H
     1.5 +#define ALTHUNK_H
     1.6 +
     1.7 +#include "alMain.h"
     1.8 +
     1.9 +#ifdef __cplusplus
    1.10 +extern "C" {
    1.11 +#endif
    1.12 +
    1.13 +void ThunkInit(void);
    1.14 +void ThunkExit(void);
    1.15 +ALenum NewThunkEntry(ALuint *index);
    1.16 +void FreeThunkEntry(ALuint index);
    1.17 +
    1.18 +#ifdef __cplusplus
    1.19 +}
    1.20 +#endif
    1.21 +
    1.22 +#endif //ALTHUNK_H
    1.23 +