public LibModPlugReader(string fileName)
        {
            // Load the module file and get the handle to it.
            modFileHandle = LibModPlugNative.LoadFile(fileName);

            // Make the new wave format.
            waveFormat = new WaveFormat(44100, 16, 2);
        }