gBar/src/Plugin.h
scorpion-26 c27912c8a5 Add Plugin system
Plugins are used to extend the functionality, without needing to poke around in
the original source code.
2023-01-28 15:08:12 +01:00

8 lines
168 B
C++

#pragma once
#include <string>
#include "Window.h"
namespace Plugin
{
void LoadWidgetFromPlugin(const std::string& pluginName, Window& window, int32_t monitor);
}