From bd5f542f41fbc598fcc69b2183c0de057b8b9c40 Mon Sep 17 00:00:00 2001 From: "7u83@mail.ru" <7u83@mail.ru@noemail.net> Date: Mon, 26 Feb 2018 08:15:59 +0000 Subject: [PATCH] Added member for dll_handle FossilOrigin-Name: c213101ee622a070350930076dacedb61b48c6804c0519e75ae536b7b7ca0b96 --- src/cw/mod.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/cw/mod.h b/src/cw/mod.h index bdb4e498..f18bbee6 100644 --- a/src/cw/mod.h +++ b/src/cw/mod.h @@ -66,9 +66,11 @@ struct cw_Mod { struct cw_MsgSet * (*register_messages)(struct cw_MsgSet set, int mode); /** - * Handle returned by dlopen, if this module was loaded dynamically - * with dlopen */ - void * handle; + * Handle returned by dlopen, if this module was loaded + * dynamically with dlopen. If this module was statically + * linked, dll_handle is NULL. + */ + void * dll_handle; };