Exemplo n.º 1
0
 public void LameSetMessageFunction(LameInfoCallback callback)
 {
     if (lame_set_msgf(lame_global_flags, callback) < 0)
     {
         throw new LibMp3LameException("lame_set_errorf returned an error");
     }
 }
Exemplo n.º 2
0
        public void LameSetErrorFunction(LameInfoCallback callback)
        {
            int ret = lame_set_errorf(lame_global_flags, callback);

            if (ret < 0)
            {
                throw new LibMp3LameException("lame_set_errorf returned an error");
            }
        }
Exemplo n.º 3
0
 public extern static int lame_set_msgf(IntPtr lame_global_flags, LameInfoCallback func);