/
redgpu
/
ezEngine
Обзор
Документация
Войти
/
redgpu
/
ezEngine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
Code/EnginePlugins/MiniAudioPlugin/MiniAudioPluginPCH.h
21 строка
867 B
Jan Krassnigg
Several small fixes (#1710)
12 ноя 2025, 00:00
12 ноя 2025, 00:00
9b4c49c
Код
Авторство
О чём код?
#pragma once #include <Foundation/Basics.h> #include <Foundation/Logging/Log.h> #include <MiniAudio/miniaudio.h> #include <MiniAudioPlugin/MiniAudioPluginDLL.h> EZ_DEFINE_AS_POD_TYPE(ma_sound); // <StaticLinkUtil::StartHere> // all include's before this will be left alone and not replaced by the StaticLinkUtil // all include's AFTER this will be removed by the StaticLinkUtil and updated by what is actually used throughout the library #define EZ_MA_CHECK(x) \ do \ { \ if (int resVar = (x); resVar != MA_SUCCESS) \ { \ EZ_REPORT_FAILURE("MiniAudio error: {}", resVar); \ } \ } while (false)\