ocarina/gui/gst.cpp

18 lines
195 B
C++
Raw Normal View History

/*
* Copyright 2014 (c) Anna Schumaker.
*/
#include <core/driver.h>
static GSTDriver *gst_driver;
void init_gst()
{
gst_driver = new GSTDriver();
}
void quit_gst()
{
delete gst_driver;
}