diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2025-04-01 16:13:55 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2025-04-01 16:13:55 (GMT) |
commit | 1569c4bb1cd25bed29b887c5c8180e7caffc586b (patch) | |
tree | cf758696593a5af54b935b8078426c1fdf052992 /plugins/pychrysalide/bindings.h | |
parent | bb7e4c5e6e4c51da0d9b1a33b571b0c64851c1a8 (diff) |
Handle UI Python plugins and clean the core bindings code.
Diffstat (limited to 'plugins/pychrysalide/bindings.h')
-rw-r--r-- | plugins/pychrysalide/bindings.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/plugins/pychrysalide/bindings.h b/plugins/pychrysalide/bindings.h index 1758747..6bf2efa 100644 --- a/plugins/pychrysalide/bindings.h +++ b/plugins/pychrysalide/bindings.h @@ -2,7 +2,7 @@ /* Chrysalide - Outil d'analyse de fichiers binaires * bindings.h - prototypes pour les éléments d'un socle commun aux fonctionnalités graphiques et non graphiques * - * Copyright (C) 2024 Cyrille Bagard + * Copyright (C) 2024-2025 Cyrille Bagard * * This file is part of Chrysalide. * @@ -44,6 +44,9 @@ +/* ------------------------ FONCTIONNALITES DE MISE EN PLACE ------------------------ */ + + /* Charge un module GI dans Python avec une version attendue. */ bool import_namespace_from_gi_repository(const char *, const char *); @@ -70,4 +73,12 @@ void log_pychrysalide_exception(const char *, ...); +/* -------------------- INTERVENTION DANS LA GESTION DE GREFFONS -------------------- */ + + +/* Complète les chemins de recherches de Python. */ +void extend_python_path(const GPluginModule *, const char *); + + + #endif /* _PLUGINS_PYCHRYSALIDE_BINDINGS_H */ |