GModuleFlags

Flags passed to g_module_open(). Note that these flags are not supported on all platforms. G_MODULE_BIND_LAZY specifies that symbols are only resolved when needed. The default action is to bind all symbols when the module is loaded. G_MODULE_BIND_LOCAL specifies that symbols in the module should not be added to the global name space. The default action on most platforms is to place symbols in the module in the global name space, which may cause conflicts with existing symbols. G_MODULE_BIND_MASK mask for all flags.

Values

ValueMeaning
BIND_LAZY1 << 0
BIND_LOCAL1 << 1
BIND_MASK0x03

Meta