ReaWwise

REAPER extension
Log | Files | Refs | Submodules

IReaperPlugin.h (2092B)


      1 /*----------------------------------------------------------------------------------------
      2 
      3 Copyright (c) 2023 AUDIOKINETIC Inc.
      4 
      5 This file is licensed to use under the license available at:
      6 https://github.com/audiokinetic/ReaWwise/blob/main/License.txt (the "License").
      7 You may not use this file except in compliance with the License.
      8 
      9 Unless required by applicable law or agreed to in writing, software distributed
     10 under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
     11 CONDITIONS OF ANY KIND, either express or implied.  See the License for the
     12 specific language governing permissions and limitations under the License.
     13 
     14 ----------------------------------------------------------------------------------------*/
     15 
     16 #pragma once
     17 
     18 class ReaProject;
     19 
     20 class IReaperPlugin
     21 {
     22 public:
     23 	virtual ~IReaperPlugin() = default;
     24 
     25 	virtual int getCallerVersion() const = 0;
     26 	virtual int registerFunction(const char* name, void* infoStruct) const = 0;
     27 	virtual bool isValid() const = 0;
     28 	virtual void* getMainHwnd() = 0;
     29 	virtual bool addExtensionsMainMenu() = 0;
     30 	virtual ReaProject* enumProjects(int idx, char* projfnOutOptional, int projfnOutOptional_sz) = 0;
     31 	virtual int resolveRenderPattern(ReaProject* proj, const char* path, const char* pattern, char* targets, int targets_sz) = 0;
     32 	virtual void main_OnCommand(int command, int flag) = 0;
     33 	virtual int getProjExtState(ReaProject* proj, const char* extname, const char* key, char* valOutNeedBig, int valOutNeedBig_sz) = 0;
     34 	virtual int setProjExtState(ReaProject* proj, const char* extname, const char* key, const char* value) = 0;
     35 	virtual void markProjectDirty(ReaProject* proj) = 0;
     36 	virtual int getProjectStateChangeCount(ReaProject* proj) = 0;
     37 	virtual double getSetProjectInfo(ReaProject* proj, const char* desc, double value, bool is_set) = 0;
     38 	virtual bool getSetProjectInfo_String(ReaProject* project, const char* desc, char* valuestrNeedBig, bool is_set) = 0;
     39 	virtual int reallocCmdRegisterBuf(char** ptr, int* ptr_size) = 0;
     40 	virtual void reallocCmdClear(int tok) = 0;
     41 	virtual bool supportsReallocCommands() = 0;
     42 };