Package ch.bailu.gtk.glib
Interface Glib.OnTestLogFatalFunc
- Enclosing class:
- Glib
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
-
Method Summary
Modifier and TypeMethodDescriptionboolean
onTestLogFatalFunc
(CallbackHandler __self, Str log_domain, int log_level, Str message, Pointer user_data) Specifies the prototype of fatal log handler functions.
-
Method Details
-
onTestLogFatalFunc
boolean onTestLogFatalFunc(CallbackHandler __self, @Nonnull Str log_domain, int log_level, @Nonnull Str message, @Nullable Pointer user_data) Specifies the prototype of fatal log handler functions.- Parameters:
log_domain
- the log domain of the messagelog_level
- the log level of the message (including the fatal and recursion flags)message
- the message to processuser_data
- user data, set in g_test_log_set_fatal_handler()- Returns:
- %TRUE if the program should abort, %FALSE otherwise
-