mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-12 02:40:00 +01:00
24 lines
375 B
C++
24 lines
375 B
C++
#ifndef __GSTGUI_TOOLKIT_H_
|
|
#define __GSTGUI_TOOLKIT_H_
|
|
|
|
#include <string>
|
|
#include <list>
|
|
using namespace std;
|
|
|
|
|
|
namespace GstToolkit
|
|
{
|
|
|
|
string to_string(guint64 t);
|
|
|
|
list<string> all_plugins();
|
|
list<string> all_plugin_features(string pluginname);
|
|
|
|
bool enable_feature (string name, bool enable);
|
|
|
|
string gst_version();
|
|
|
|
}
|
|
|
|
#endif // __GSTGUI_TOOLKIT_H_
|