Beispiel #1
0
        /* IntPtr refers to a Mix_Chunk* */
        /* This is an RWops macro in the C header. */
        public static IntPtr Mix_LoadWAV(string file)
        {
            IntPtr rwops = SDL.SDL_RWFromFile(file, "rb");

            return(Mix_LoadWAV_RW(rwops, 1));
        }