/
redgpu
/
ezEngine
Обзор
Документация
Войти
/
redgpu
/
ezEngine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
Code/Engine/Foundation/Platform/Posix/OSFileDecl_Posix.h
26 строк
443 B
Jan Krassnigg
Further refactor of platform specific code (2) (#1416)
25 окт 2024, 17:01
Не верифицирован
25 окт 2024, 17:01
b3eeda7
Код
Авторство
О чём код?
#pragma once #include <Foundation/Basics.h> // Deactivate Doxygen document generation for the following block. /// \cond struct ezOSFileData { ezOSFileData() { m_pFileHandle = nullptr; } FILE* m_pFileHandle; }; #if EZ_ENABLED(EZ_SUPPORTS_FILE_ITERATORS) struct ezFileIterationData { // This is storing DIR*, which we can't forward declare ezHybridArray<void*, 16> m_Handles; ezString m_wildcardSearch; }; #endif /// \endcond