/
redgpu
/
ezEngine
Обзор
Документация
Войти
/
redgpu
/
ezEngine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
Code/Engine/Foundation/Platform/NoImpl/EnvironmentVariableUtils_NoImpl.h
32 строки
785 B
C-Core
Re-enabled security relevant warnings (#1339)
25 июн 2024, 12:03
Не верифицирован
25 июн 2024, 12:03
7083663
Код
Авторство
О чём код?
#include <Foundation/FoundationInternal.h> EZ_FOUNDATION_INTERNAL_HEADER #include <Foundation/System/EnvironmentVariableUtils.h> ezString ezEnvironmentVariableUtils::GetValueStringImpl(ezStringView sName, ezStringView sDefault) { EZ_IGNORE_UNUSED(sName); EZ_IGNORE_UNUSED(sDefault); EZ_ASSERT_NOT_IMPLEMENTED return ""; } ezResult ezEnvironmentVariableUtils::SetValueStringImpl(ezStringView sName, ezStringView sValue) { EZ_IGNORE_UNUSED(sName); EZ_IGNORE_UNUSED(sValue); EZ_ASSERT_NOT_IMPLEMENTED return EZ_FAILURE; } bool ezEnvironmentVariableUtils::IsVariableSetImpl(ezStringView sName) { EZ_IGNORE_UNUSED(sName); return false; } ezResult ezEnvironmentVariableUtils::UnsetVariableImpl(ezStringView sName) { EZ_IGNORE_UNUSED(sName); return EZ_FAILURE; }