87c82f5314
- SupportedFiles: isSupportedAudioFile (.mp3/.wav/.ogg/.flac) - View::viewFile: audio files start one.tactility.mp3player with file=<path> argv (CurrentAppCompat parses key=value pairs) - es3c28p: add CONFIG_LV_IMAGE_HEADER_CACHE_DEF_CNT=16 for parity with es3c35p
13 lines
298 B
C++
13 lines
298 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace tt::app::files {
|
|
|
|
bool isSupportedAppFile(const std::string& filename);
|
|
bool isSupportedImageFile(const std::string& filename);
|
|
bool isSupportedTextFile(const std::string& filename);
|
|
bool isSupportedAudioFile(const std::string& filename);
|
|
|
|
} // namespace
|