diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2024-07-02 06:27:09 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2024-07-02 06:27:09 (GMT) |
commit | d3c74213cf2306453b21779c80d05d121fbffe66 (patch) | |
tree | 4222409777f72f77238c95adba34ed5b07746567 /src/app.h | |
parent | 21788df2799eb8976c1c68cd84abf0ffe92a7a45 (diff) |
Ensure minimal desktop support for icon and name.
Diffstat (limited to 'src/app.h')
-rw-r--r-- | src/app.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/app.h b/src/app.h new file mode 100644 index 0000000..7696df5 --- /dev/null +++ b/src/app.h @@ -0,0 +1,34 @@ + +/* Chrysalide - Outil d'analyse de fichiers binaires + * app.h - prototypes pour le fichier d'entrée du programme + * + * Copyright (C) 2024 Cyrille Bagard + * + * This file is part of Chrysalide. + * + * Chrysalide is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * Chrysalide is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Chrysalide. If not, see <http://www.gnu.org/licenses/>. + */ + + +#ifndef _APP_H +#define _APP_H + + + +/* Installe au besoin une définition locale pour le système. */ +void ensure_wm_icon_and_name(void); + + + +#endif /* _APP_H */ |