alc_func.h 1.3 KB

1234567891011121314151617181920
  1. //AL_FUNCTION(ALCubyte*, alcGetString, (ALCdevice *device,ALCenum param), return NULL; )
  2. //AL_FUNCTION(ALCvoid, alcGetIntegerv, (ALCdevice * device,ALCenum param,ALCsizei size,ALCint *data), return; )
  3. AL_FUNCTION(ALCvoid*, alcOpenDevice, (const ALCchar *deviceName), return NULL; )
  4. AL_FUNCTION(ALCvoid, alcCloseDevice, (ALCvoid *device), return; )
  5. AL_FUNCTION(ALCvoid*, alcCreateContext, (ALCvoid *device,ALCint *attrList), return NULL; )
  6. AL_FUNCTION(ALCboolean, alcMakeContextCurrent, (ALCvoid *context), return AL_FALSE; )
  7. AL_FUNCTION(ALCvoid, alcProcessContext, (ALCvoid *context), return; )
  8. AL_FUNCTION(ALCvoid*, alcGetCurrentContext, (ALCvoid), return NULL; )
  9. AL_FUNCTION(ALCvoid*, alcGetContextsDevice, (ALCvoid *context), return NULL; )
  10. AL_FUNCTION(ALCvoid, alcSuspendContext, (ALCvoid *context), return; )
  11. AL_FUNCTION(ALCvoid, alcDestroyContext, (ALCvoid *context), return; )
  12. AL_FUNCTION(ALCenum, alcGetError, (ALCvoid *device), return ALC_INVALID_DEVICE; )
  13. //AL_FUNCTION(ALCboolean, alcIsExtensionPresent, (ALCdevice *device,ALCubyte *extName), return AL_FALSE; )
  14. //AL_FUNCTION(ALCvoid*, alcGetProcAddress, (ALCdevice *device,ALCubyte *funcName), return NULL; )
  15. //AL_FUNCTION(ALCenum, alcGetEnumValue, (ALCdevice *device,ALCubyte *enumName), return ALC_INVALID_ENUM; )