Files
hot-step-cpp-ROCm/engine/vendor/vst3sdk/vstgui4/vstgui/lib/vstguiinit.cpp
T
2026-08-16 18:24:52 +07:00

27 lines
703 B
C++

// in the LICENSE file found in the top-level directory of this
// distribution and at http://github.com/steinbergmedia/vstgui/LICENSE
#include "platform/platformfactory.h"
#include "cfont.h"
//-----------------------------------------------------------------------------
namespace VSTGUI {
//-----------------------------------------------------------------------------
void init (PlatformInstanceHandle instance)
{
initPlatform (instance);
CFontDesc::init ();
}
//-----------------------------------------------------------------------------
void exit ()
{
CFontDesc::cleanup ();
exitPlatform ();
}
//-----------------------------------------------------------------------------
} // VSTGUI