diff options
author | Richard <q@1bpm.net> | 2022-09-14 22:21:05 +0100 |
---|---|---|
committer | Richard <q@1bpm.net> | 2022-09-14 22:21:05 +0100 |
commit | 05a9a94ba5af5f7efa1fbc7acc2f4045ad13f5f6 (patch) | |
tree | 1456c50e5c242f686a50eb0852780dfa0dd9841d /src | |
parent | 6d01af96149b6a56c353e7876748b2ee9bcd6762 (diff) | |
download | csound-json-05a9a94ba5af5f7efa1fbc7acc2f4045ad13f5f6.tar.gz csound-json-05a9a94ba5af5f7efa1fbc7acc2f4045ad13f5f6.tar.bz2 csound-json-05a9a94ba5af5f7efa1fbc7acc2f4045ad13f5f6.zip |
corrected jsongetval to jsonget to match docs, updated examplev1.1
Diffstat (limited to 'src')
-rw-r--r-- | src/opcodes.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/opcodes.cpp b/src/opcodes.cpp index 26a835f..f3eccd6 100644 --- a/src/opcodes.cpp +++ b/src/opcodes.cpp @@ -538,7 +538,7 @@ struct jsonsizeK : jsonsizeBase { /* Get object from an object by key name */ -struct jsongetvalString : plugin<1, 2> { +struct jsongetString : plugin<1, 2> { PLUGINIT("i", "iS", true) void irun() { STRINGDAT &input = inargs.str_data(1); @@ -554,7 +554,7 @@ struct jsongetvalString : plugin<1, 2> { /* Get object from an array by index */ -struct jsongetvalNumeric : plugin<1, 2> { +struct jsongetNumeric : plugin<1, 2> { PLUGINIT("i", "ii", true) void irun() { jsoncons::json selected = jsonSession->data[(int) inargs[1]]; @@ -955,8 +955,8 @@ void csnd::on_load(csnd::Csound *csound) { csnd::plugin<jsontypeString>(csound, "jsontype.S", csnd::thread::i); csnd::plugin<jsonkeys>(csound, "jsonkeys", csnd::thread::i); csnd::plugin<jsonkeysK>(csound, "jsonkeysk", csnd::thread::ik); - csnd::plugin<jsongetvalString>(csound, "jsongetval.S", csnd::thread::i); - csnd::plugin<jsongetvalNumeric>(csound, "jsongetval.i", csnd::thread::i); + csnd::plugin<jsongetString>(csound, "jsonget.S", csnd::thread::i); + csnd::plugin<jsongetNumeric>(csound, "jsonget.i", csnd::thread::i); csnd::plugin<jsonsize>(csound, "jsonsize", csnd::thread::i); csnd::plugin<jsonsizeK>(csound, "jsonsizek", csnd::thread::ik); |