Hi im doing a simple linking test for getting OpenAL/OpenSLES to work on MonoDroid in C#. What is the correct lib name I should be linking to, because linking to "libOpenSLES" is saying it cant find the method "alutInit"??
NOTE: I'm testing this on a Android 4.0.3 tablet device.
Here is the simple test code::
public const string DLL = "libOpenSLES";
[DllImport(DLL, EntryPoint="alutInit", ExactSpelling=true)]
public unsafe static extern void alutInit(ALint* argc, ALbyte** argv);
public unsafe void Init()
{
alutInit((ALint*)0, (ALbyte**)0);
}