File indexing completed on 2024-03-24 17:24:30

0001 /**
0002  * SPDX-FileCopyrightText: (C) 2015 by Gleb Baryshev <gleb.baryshev@gmail.com>
0003  * SPDX-License-Identifier: GPL-2.0-or-later
0004  */
0005 
0006 #ifndef FILE_MIMETYPES_H
0007 #define FILE_MIMETYPES_H
0008 
0009 namespace MimeTypes
0010 {
0011 #define StrRes static const char *const
0012 
0013 StrRes LAUNCHER = "application/x-desktop";
0014 StrRes HTML = "text/html";
0015 StrRes TEXT = "text/plain";
0016 
0017 StrRes ANIMATION = "image/gif";
0018 StrRes ANIMATION_MNG = "movie/x-mng";
0019 
0020 StrRes IMAGE = "image/";
0021 StrRes AUDIO = "audio/";
0022 
0023 #undef StrRes
0024 }
0025 
0026 #endif // FILE_MIMETYPES_H