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

            return(LoadWavRw(rwops, 1));
        }