Mercurial > hg > pub > prymula > com
view DPF-Prymula-audioplugins/dpf/dgl/src/pugl-extra/haiku_stub.cpp @ 9:cdadbf30a821
arkanoid-0.7-1_PKG
author | prymula <prymula76@outlook.com> |
---|---|
date | Sun, 04 Feb 2024 15:47:05 +0100 |
parents | 84e66ea83026 |
children |
line wrap: on
line source
// Copyright 2012-2022 David Robillard <d@drobilla.net> // Copyright 2021-2022 Filipe Coelho <falktx@falktx.com> // SPDX-License-Identifier: ISC #include "pugl/stub.h" #include "../pugl-upstream/src/stub.h" #include "pugl/pugl.h" const PuglBackend* puglStubBackend(void) { static const PuglBackend backend = { puglStubConfigure, puglStubCreate, puglStubDestroy, puglStubEnter, puglStubLeave, puglStubGetContext, }; return &backend; }