summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/constants.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2020-12-06 19:01:21 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2020-12-06 19:01:21 (GMT)
commitaa7cbdda718efd7ec41f0ce580847a0d0c31cfd3 (patch)
tree1216e62254397446f039a6fe26bd12ba65f68321 /plugins/pychrysalide/constants.c
parent333e68541e376a7b86703fad8e917f71c0f243d0 (diff)
Extended the plugin API to notify several stages of loading.
Diffstat (limited to 'plugins/pychrysalide/constants.c')
-rw-r--r--plugins/pychrysalide/constants.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/pychrysalide/constants.c b/plugins/pychrysalide/constants.c
index ded25c3..53d4375 100644
--- a/plugins/pychrysalide/constants.c
+++ b/plugins/pychrysalide/constants.c
@@ -56,7 +56,8 @@ bool define_plugin_module_constants(PyTypeObject *type)
if (result) result = add_const_to_group(values, "BASIC_NONE", PGA_BASIC_NONE);
if (result) result = add_const_to_group(values, "PLUGIN_INIT", PGA_PLUGIN_INIT);
if (result) result = add_const_to_group(values, "PLUGIN_EXIT", PGA_PLUGIN_EXIT);
- if (result) result = add_const_to_group(values, "NATIVE_LOADED", PGA_NATIVE_LOADED);
+ if (result) result = add_const_to_group(values, "NATIVE_PLUGINS_LOADED", PGA_NATIVE_PLUGINS_LOADED);
+ if (result) result = add_const_to_group(values, "PLUGINS_LOADED", PGA_PLUGINS_LOADED);
if (result) result = add_const_to_group(values, "TYPE_BUILDING", PGA_TYPE_BUILDING);
if (result) result = add_const_to_group(values, "GUI_THEME", PGA_GUI_THEME);
if (result) result = add_const_to_group(values, "PANEL_CREATION", PGA_PANEL_CREATION);