Reverse engineer IO related opcodes

This commit is contained in:
Robbert van der Helm
2020-03-26 15:58:15 +01:00
parent a3d8c6cb0a
commit a85e936059
2 changed files with 54 additions and 6 deletions
+14 -6
View File
@@ -16,18 +16,20 @@
#include "logging.h"
#ifdef __WINE__
#include "../wine-host/boost-fix.h"
#endif
#include <vestige/aeffectx.h>
#include <boost/process/environment.hpp>
#include <chrono>
#include <ctime>
#include <fstream>
#include <iomanip>
#include <iostream>
#ifdef __WINE__
#include "../wine-host/boost-fix.h"
#endif
#include <boost/process/environment.hpp>
#include "vestige/aeffectx.h"
#include "vst24.h"
/**
* The environment variable indicating whether to log to a file. Will log to
@@ -355,6 +357,12 @@ std::optional<std::string> opcode_to_string(bool is_dispatch, int opcode) {
case effStopProcess:
return "effStopProcess";
break;
case effGetInputProperties:
return "effGetInputProperties";
break;
case effGetOutputProperties:
return "effGetOutputProperties";
break;
default:
return std::nullopt;
break;