コード例 #1
0
 public bool Load()
 {
     if (this.IsLoaded)
     {
         BassWaDsp.BASS_WADSP_FreeDSP(this._plugin);
     }
     this._plugin = BassWaDsp.BASS_WADSP_Load(this._file, 5, 5, 100, 100, null);
     return(this._plugin != 0);
 }
コード例 #2
0
 public bool Unload()
 {
     if (this.IsStarted)
     {
         this.Stop();
     }
     if (this.IsLoaded)
     {
         BassWaDsp.BASS_WADSP_FreeDSP(this._plugin);
         this._plugin = 0;
         return(true);
     }
     return(false);
 }