27 lines
703 B
C++
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
|
|
|