You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
328 B

#include <AL/al.h>
#include <AL/alc.h>
#include <stdio.h>
int main()
{
/* Reference an AL symbol without requiring a context at runtime. */
printf("&alGetString = %p\n", &alGetString);
/* Reference an ALC symbol without requiring a context at runtime. */
printf("&alcGetString = %p\n", &alcGetString);
return 0;
}