PLUG'N SCRIPT
rapid plugin development
Tutorial
DSP
KUIML
How-to
Scripts
Main functions
  • processBlock
  • processSample
  • updateInputParameters
  • updateInputParametersForBlock
  • computeOutputData
Additional
  • initialize
  • reset
  • shutdown
DSPshutdown
August 04, 2020

Shutdown

Here you can close opened files, free resources, etc. 

In AngelScript most of the cleaning up is done automatically. But if you're using C++, this functions becomes useful.

  1. // called on exit
  2. DSP_EXPORT void shutdown() {
  3. // free resources, etc.
  4. }

Note, that DSP_EXPORT directive is required for C++. In AngelScript you can use it like that.

  1. void shutdown() {
  2. // do something important
  3. }

Comments

2020 © Plug'n Script and KUIML by Blue Cat Audio  |  Site by LetiMix