DPF

DISTRHO Plugin Framework
Log | Files | Refs | Submodules | README | LICENSE

commit 581cfa5af434ebb3135b522c0c99066e8d94cd2e
parent 2cf3e6e6dd5ed52144106496efa34c7571639cd0
Author: falkTX <falktx@falktx.com>
Date:   Sat, 13 May 2023 00:59:48 +0200

travesty: add c++ variant for bstream

Signed-off-by: falkTX <falktx@falktx.com>

Diffstat:
Mdistrho/src/travesty/bstream.h | 12++++++++++++
1 file changed, 12 insertions(+), 0 deletions(-)

diff --git a/distrho/src/travesty/bstream.h b/distrho/src/travesty/bstream.h @@ -36,3 +36,15 @@ struct v3_bstream { static constexpr const v3_tuid v3_bstream_iid = V3_ID(0xC3BF6EA2, 0x30994752, 0x9B6BF990, 0x1EE33E9B); + +#ifdef __cplusplus + +/** + * C++ variants + */ + +struct v3_bstream_cpp : v3_funknown { + v3_bstream stream; +}; + +#endif