Browse Source

Rename some files

pull/2/merge
falkTX 9 years ago
parent
commit
de6af4f171
3 changed files with 7 additions and 5 deletions
  1. +2
    -0
      .gitignore
  2. +3
    -3
      plugins/freeverb/gen_exported.cpp
  3. +2
    -2
      plugins/freeverb/gen_exported.h

+ 2
- 0
.gitignore View File

@@ -15,4 +15,6 @@
bin/*-dssi/
bin/*.lv2/
bin/Ma*
bin/Pitchotto
bin/Shiroverb
gen_dsp/

plugins/freeverb/freeverb.cpp → plugins/freeverb/gen_exported.cpp View File

@@ -1,6 +1,6 @@
#include "freeverb.h"
#include "gen_exported.h"

namespace freeverb {
namespace gen_exported {


/*******************************************************************************************************************
@@ -417,4 +417,4 @@ void destroy(CommonState *cself) {
}


} // freeverb::
} // gen_exported::

plugins/freeverb/freeverb.h → plugins/freeverb/gen_exported.h View File

@@ -22,7 +22,7 @@ OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include "genlib_exportfunctions.h"
#include "genlib_ops.h"

namespace freeverb {
namespace gen_exported {

int num_inputs();
int num_outputs();
@@ -34,4 +34,4 @@ void getparameter(CommonState *cself, long index, double *value);
void * create(double sr, long vs);
void destroy(CommonState *cself);

} // freeverb::
} // gen_exported::

Loading…
Cancel
Save