mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-06 19:40:10 +02:00
Correct VeSTige header name to aeffectx.h
This commit is contained in:
@@ -22,7 +22,7 @@
|
||||
#include <bitsery/traits/array.h>
|
||||
#include <bitsery/traits/string.h>
|
||||
#include <bitsery/traits/vector.h>
|
||||
#include <vestige/aeffect.h>
|
||||
#include <vestige/aeffectx.h>
|
||||
|
||||
#include <cinttypes>
|
||||
#include <iostream>
|
||||
@@ -214,7 +214,7 @@ void serialize(S& s, AEffect& plugin) {
|
||||
s.container1b(plugin.unknown1);
|
||||
}
|
||||
|
||||
// I don't want to editor 'include/vestige/aeffect.h`. That's why this type
|
||||
// I don't want to editor 'include/vestige/aeffectx.h`. That's why this type
|
||||
// trait and the above serialization function are here.` Clang complains that
|
||||
// `buffer` should be qualified (and only in some cases), so `buffer_t` it is.
|
||||
template <typename T>
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
#endif
|
||||
#include <boost/process/environment.hpp>
|
||||
|
||||
#include "vestige/aeffect.h"
|
||||
#include "vestige/aeffectx.h"
|
||||
|
||||
/**
|
||||
* The environment variable indicating whether to log to a file. Will log to
|
||||
@@ -176,13 +176,13 @@ void Logger::log_event_response(bool is_dispatch,
|
||||
|
||||
/**
|
||||
* Convert an event opcode to a human readable string for debugging purposes.
|
||||
* See `src/include/vestige/aeffect.h` for a complete list of these opcodes.
|
||||
* See `src/include/vestige/aeffectx.h` for a complete list of these opcodes.
|
||||
*
|
||||
* @param is_dispatch Whether to use opcodes for the `dispatch` function. Will
|
||||
* use the names from the host callback function if set to false.
|
||||
* @param opcode The opcode of the event.
|
||||
*
|
||||
* @return Either the name from `aeffect.h`, or a nullopt if it was not listed
|
||||
* @return Either the name from `aeffectx.h`, or a nullopt if it was not listed
|
||||
* there.
|
||||
*/
|
||||
std::optional<std::string> opcode_to_string(bool is_dispatch, int opcode) {
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <vestige/aeffect.h>
|
||||
#include <vestige/aeffectx.h>
|
||||
|
||||
#include <boost/asio/io_context.hpp>
|
||||
#include <boost/asio/local/stream_protocol.hpp>
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
#include <vestige/aeffect.h>
|
||||
#include <vestige/aeffectx.h>
|
||||
|
||||
#include <iostream>
|
||||
#include <memory>
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
#define NOMCX
|
||||
#define NOIMM
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
#include <vestige/aeffect.h>
|
||||
#include <vestige/aeffectx.h>
|
||||
#include <windows.h>
|
||||
|
||||
#include <thread>
|
||||
|
||||
Reference in New Issue
Block a user