Package-level declarations

Types

Link copied to clipboard
class Allocator(val glibAllocatorPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance
Link copied to clipboard
class Array(val glibArrayPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

Contains the public fields of a GArray.

Link copied to clipboard
class AsciiType(val mask: <Error class: unknown class>) : Bitfield<AsciiType>
Link copied to clipboard
class AsyncQueue(val glibAsyncQueuePointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

An opaque data structure which represents an asynchronous queue.

Link copied to clipboard
class BookmarkFile(val glibBookmarkFilePointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

GBookmarkFile lets you parse, edit or create files containing bookmarks.

Link copied to clipboard

Error codes returned by bookmark file parsing.

Link copied to clipboard
Link copied to clipboard
class ByteArray(val glibByteArrayPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

Contains the public fields of a GByteArray.

Link copied to clipboard
class Bytes(val glibBytesPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

A simple refcounted data type representing an immutable sequence of zero or more bytes from an unspecified origin.

Link copied to clipboard
class Cache(val glibCachePointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

This is deprecated since version 2.32.

Link copied to clipboard
typealias CacheDestroyFunc = (<Error class: unknown class>?) -> Unit

Specifies the type of the @value_destroy_func and @key_destroy_func functions passed to g_cache_new(). The functions are passed a pointer to the #GCache key or #GCache value and should free any memory and other resources associated with it.

Link copied to clipboard
typealias CacheDupFunc = (<Error class: unknown class>?) -> <Error class: unknown class>?

Specifies the type of the @key_dup_func function passed to g_cache_new(). The function is passed a key (not a value as the prototype implies) and should return a duplicate of the key.

Link copied to clipboard
typealias CacheNewFunc = (<Error class: unknown class>?) -> <Error class: unknown class>?

Specifies the type of the @value_new_func function passed to g_cache_new(). It is passed a #GCache key and should create the value corresponding to the key.

Link copied to clipboard
class Checksum(val glibChecksumPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

GLib provides a generic API for computing checksums (or ‘digests’) for a sequence of arbitrary bytes, using various hashing algorithms like MD5, SHA-1 and SHA-256. Checksums are commonly used in various environments and specifications.

Link copied to clipboard

The hashing algorithm to be used by #GChecksum when performing the digest of some data.

Link copied to clipboard
typealias ChildWatchFunc = (pid: Pid, <Error class: unknown class>) -> Unit

Prototype of a #GChildWatchSource callback, called when a child process has exited.

Link copied to clipboard
typealias ClearHandleFunc = (<Error class: unknown class>) -> Unit

Specifies the type of function passed to func@GLib.clear_handle_id The implementation is expected to free the resource identified by @handle_id; for instance, if @handle_id is a struct@GLib.Source ID, func@GLib.Source.remove can be used.

Link copied to clipboard
typealias CompareDataFunc = (<Error class: unknown class>?, <Error class: unknown class>?) -> <Error class: unknown class>

Specifies the type of a comparison function used to compare two values. The function should return a negative integer if the first value comes before the second, 0 if they are equal, or a positive integer if the first value comes after the second.

Link copied to clipboard
typealias CompareFunc = (<Error class: unknown class>?, <Error class: unknown class>?) -> <Error class: unknown class>

Specifies the type of a comparison function used to compare two values. The function should return a negative integer if the first value comes before the second, 0 if they are equal, or a positive integer if the first value comes after the second.

Link copied to clipboard
class Completion(val glibCompletionPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

This is deprecated since version 2.26.

Link copied to clipboard
typealias CompletionFunc = (<Error class: unknown class>?) -> String

Specifies the type of the function passed to g_completion_new(). It should return the string corresponding to the given target item. This is used when you use data structures as #GCompletion items.

Link copied to clipboard
typealias CompletionStrncmpFunc = (s1: String, s2: String, <Error class: unknown class>) -> <Error class: unknown class>

Specifies the type of the function passed to g_completion_set_compare(). This is used when you use strings as #GCompletion items.

Link copied to clipboard
class Cond(val glibCondPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

The #GCond struct is an opaque data structure that represents a condition. Threads can block on a #GCond if they find a certain condition to be false. If other threads change the state of this condition they signal the #GCond, and that causes the waiting threads to be woken up.

Link copied to clipboard

Error codes returned by character set conversion routines.

Link copied to clipboard
class ConvertErrorException(val error: Error, val code: ConvertError) : GLibException
Link copied to clipboard
typealias CopyFunc = (<Error class: unknown class>, <Error class: unknown class>?) -> <Error class: unknown class>

A function of this signature is used to copy the node data when doing a deep-copy of a tree.

Link copied to clipboard
class Data(val glibDataPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

An opaque data structure that represents a keyed data list.

Link copied to clipboard
typealias DataForeachFunc = (keyId: Quark, <Error class: unknown class>?) -> Unit

Specifies the type of function passed to g_dataset_foreach(). It is called with each #GQuark id and associated data element, together with the @user_data parameter supplied to g_dataset_foreach().

Link copied to clipboard
class Date(val glibDatePointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

GDate is a struct for calendrical calculations.

Link copied to clipboard
typealias DateDay = <Error class: unknown class>

Integer representing a day of the month; between 1 and 31.

Link copied to clipboard

This enumeration isn't used in the API, but may be useful if you need to mark a number as a day, month, or year.

Link copied to clipboard

Enumeration representing a month; values are %G_DATE_JANUARY, %G_DATE_FEBRUARY, etc. %G_DATE_BAD_MONTH is the invalid value.

Link copied to clipboard
class DateTime(val glibDateTimePointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

GDateTime is a structure that combines a Gregorian date and time into a single structure.

Link copied to clipboard

Enumeration representing a day of the week; %G_DATE_MONDAY, %G_DATE_TUESDAY, etc. %G_DATE_BAD_WEEKDAY is an invalid weekday.

Link copied to clipboard
typealias DateYear = <Error class: unknown class>

Integer type representing a year.

Link copied to clipboard
class DebugKey(val glibDebugKeyPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

Associates a string with a bit flag. Used in g_parse_debug_string().

Link copied to clipboard
typealias DestroyNotify = (<Error class: unknown class>?) -> Unit

Specifies the type of function which is called when a data element is destroyed. It is passed the pointer to the data element and should free any memory and resources allocated for it.

Link copied to clipboard
class Dir(val glibDirPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

An opaque structure representing an opened directory.

Link copied to clipboard
class DoubleIeee754(val glibDoubleIeee754Pointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

The #GFloatIEEE754 and #GDoubleIEEE754 unions are used to access the sign, mantissa and exponent of IEEE floats and doubles. These unions are defined as appropriate for a given platform. IEEE floats and doubles are supported (used for storage) by at least Intel, PPC and Sparc.

Link copied to clipboard
typealias DuplicateFunc = (<Error class: unknown class>?) -> <Error class: unknown class>?

The type of functions that are used to 'duplicate' an object. What this means depends on the context, it could just be incrementing the reference count, if @data is a ref-counted object.

Link copied to clipboard
typealias EqualFunc = (<Error class: unknown class>?, <Error class: unknown class>?) -> Boolean

Specifies the type of a function used to test two values for equality. The function should return true if both values are equal and false otherwise.

Link copied to clipboard
typealias EqualFuncFull = (<Error class: unknown class>?, <Error class: unknown class>?) -> Boolean

Specifies the type of a function used to test two values for equality. The function should return true if both values are equal and false otherwise.

Link copied to clipboard
class Error(val glibErrorPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

The GError structure contains information about an error that has occurred.

Link copied to clipboard
typealias ErrorClearFunc = (error: Error) -> Unit

Specifies the type of function which is called when an extended error instance is freed. It is passed the error pointer about to be freed, and should free the error's private data fields.

Link copied to clipboard
typealias ErrorCopyFunc = (srcError: Error, destError: Error) -> Unit

Specifies the type of function which is called when an extended error instance is copied. It is passed the pointer to the destination error and source error, and should copy only the fields of the private data from @src_error to @dest_error.

Link copied to clipboard
typealias ErrorInitFunc = (error: Error) -> Unit

Specifies the type of function which is called just after an extended error instance is created and its fields filled. It should only initialize the fields in the private data, which can be received with the generated *_get_private() function.

Link copied to clipboard

The possible errors, used in the @v_error field of #GTokenValue, when the token is a %G_TOKEN_ERROR.

Link copied to clipboard

Values corresponding to @errno codes returned from file operations on UNIX. Unlike @errno codes, GFileError values are available on all systems, even Windows. The exact meaning of each code depends on what sort of file operation you were performing; the UNIX documentation gives more details. The following error code descriptions come from the GNU C Library manual, and are under the copyright of that manual.

Link copied to clipboard
class FileErrorException(val error: Error, val code: FileError) : GLibException
Link copied to clipboard
class FileSetContentsFlags(val mask: <Error class: unknown class>) : Bitfield<FileSetContentsFlags>

Flags to pass to g_file_set_contents_full() to affect its safety and performance.

Link copied to clipboard
class FileTest(val mask: <Error class: unknown class>) : Bitfield<FileTest>

A test to perform on a file using g_file_test().

Link copied to clipboard
class FloatIeee754(val glibFloatIeee754Pointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

The #GFloatIEEE754 and #GDoubleIEEE754 unions are used to access the sign, mantissa and exponent of IEEE floats and doubles. These unions are defined as appropriate for a given platform. IEEE floats and doubles are supported (used for storage) by at least Intel, PPC and Sparc.

Link copied to clipboard
class FormatSizeFlags(val mask: <Error class: unknown class>) : Bitfield<FormatSizeFlags>

Flags to modify the format of the string returned by g_format_size_full().

Link copied to clipboard
typealias FreeFunc = (<Error class: unknown class>?) -> Unit

Declares a type of function which takes an arbitrary data pointer argument and has no return value. It is not currently used in GLib or GTK.

Link copied to clipboard
typealias Func = (<Error class: unknown class>?) -> Unit

Specifies the type of functions passed to g_list_foreach() and g_slist_foreach().

Link copied to clipboard
object GLib
Link copied to clipboard
typealias HashFunc = (<Error class: unknown class>?) -> <Error class: unknown class>

Specifies the type of the hash function which is passed to g_hash_table_new() when a #GHashTable is created.

Link copied to clipboard
class HashTable(val glibHashTablePointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

The #GHashTable struct is an opaque data structure to represent a glib-Hash-Tables. It should only be accessed via the following functions.

Link copied to clipboard
class HashTableIter(val glibHashTableIterPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

A GHashTableIter structure represents an iterator that can be used to iterate over the elements of a #GHashTable. GHashTableIter structures are typically allocated on the stack and then initialized with g_hash_table_iter_init().

Link copied to clipboard
typealias HFunc = (<Error class: unknown class>?, <Error class: unknown class>?) -> Unit

Specifies the type of the function passed to g_hash_table_foreach(). It is called with each key/value pair, together with the @user_data parameter which is passed to g_hash_table_foreach().

Link copied to clipboard
class Hmac(val glibHmacPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance
Link copied to clipboard
class Hook(val glibHookPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

The #GHook struct represents a single hook function in a #GHookList.

Link copied to clipboard
typealias HookCheckFunc = (<Error class: unknown class>?) -> Boolean

Defines the type of a hook function that can be invoked by g_hook_list_invoke_check().

Link copied to clipboard
typealias HookCheckMarshaller = (hook: Hook, <Error class: unknown class>?) -> Boolean

Defines the type of function used by g_hook_list_marshal_check().

Link copied to clipboard
typealias HookCompareFunc = (newHook: Hook, sibling: Hook) -> <Error class: unknown class>

Defines the type of function used to compare #GHook elements in g_hook_insert_sorted().

Link copied to clipboard
typealias HookFinalizeFunc = (hookList: HookList, hook: Hook) -> Unit

Defines the type of function to be called when a hook in a list of hooks gets finalized.

Link copied to clipboard
typealias HookFindFunc = (hook: Hook, <Error class: unknown class>?) -> Boolean

Defines the type of the function passed to g_hook_find().

Link copied to clipboard
class HookFlagMask(val mask: <Error class: unknown class>) : Bitfield<HookFlagMask>

Flags used internally in the #GHook implementation.

Link copied to clipboard
typealias HookFunc = (<Error class: unknown class>?) -> Unit

Defines the type of a hook function that can be invoked by g_hook_list_invoke().

Link copied to clipboard
class HookList(val glibHookListPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

The #GHookList struct represents a list of hook functions.

Link copied to clipboard
typealias HookMarshaller = (hook: Hook, <Error class: unknown class>?) -> Unit

Defines the type of function used by g_hook_list_marshal().

Link copied to clipboard
typealias HrFunc = (<Error class: unknown class>?, <Error class: unknown class>?) -> Boolean

Specifies the type of the function passed to func@GLib.HashTable.find, func@GLib.HashTable.foreach_remove, and func@GLib.HashTable.foreach_steal.

Link copied to clipboard
class IConv(val glibIConvPointer: <Error class: unknown class>) : ProxyInstance

The GIConv struct wraps an iconv() conversion descriptor. It contains private data and should only be accessed using the following functions.

Link copied to clipboard
class IoChannel(val glibIoChannelPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

The GIOChannel data type aims to provide a portable method for using file descriptors, pipes, and sockets, and integrating them into the main event loop (see struct@GLib.MainContext). Currently, full support is available on UNIX platforms; support for Windows is only partially complete.

Link copied to clipboard

Error codes returned by #GIOChannel operations.

Link copied to clipboard
Link copied to clipboard
class IoCondition(val mask: <Error class: unknown class>) : Bitfield<IoCondition>

A bitwise combination representing a condition to watch for on an event source.

Link copied to clipboard

#GIOError is only used by the deprecated functions g_io_channel_read(), g_io_channel_write(), and g_io_channel_seek().

Link copied to clipboard
class IoFlags(val mask: <Error class: unknown class>) : Bitfield<IoFlags>

Specifies properties of a #GIOChannel. Some of the flags can only be read with g_io_channel_get_flags(), but not changed with g_io_channel_set_flags().

Link copied to clipboard
typealias IoFunc = (source: IoChannel, condition: IoCondition, <Error class: unknown class>?) -> Boolean

Specifies the type of function passed to g_io_add_watch() or g_io_add_watch_full(), which is called when the requested condition on a #GIOChannel is satisfied.

Link copied to clipboard
class IoFuncs(val glibIoFuncsPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

A table of functions used to handle different types of #GIOChannel in a generic way.

Link copied to clipboard

Statuses returned by most of the #GIOFuncs functions.

Link copied to clipboard
class KeyFile(val glibKeyFilePointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

GKeyFile parses .ini-like config files.

Link copied to clipboard

Error codes returned by key file parsing.

Link copied to clipboard
class KeyFileErrorException(val error: Error, val code: KeyFileError) : GLibException
Link copied to clipboard
class KeyFileFlags(val mask: <Error class: unknown class>) : Bitfield<KeyFileFlags>

Flags which influence the parsing.

Link copied to clipboard
class List(val glibListPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

The #GList struct is used for each element in a doubly-linked list.

Link copied to clipboard
class LogField(val glibLogFieldPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

Structure representing a single field in a structured log entry. See g_log_structured() for details.

Link copied to clipboard
typealias LogFunc = (logDomain: String?, logLevel: LogLevelFlags, message: String) -> Unit

Specifies the prototype of log handler functions.

Link copied to clipboard
class LogLevelFlags(val mask: <Error class: unknown class>) : Bitfield<LogLevelFlags>

Flags specifying the level of log messages.

Link copied to clipboard
typealias LogWriterFunc = (logLevel: LogLevelFlags, <Error class: unknown class>) -> LogWriterOutput

Writer function for log entries. A log entry is a collection of one or more #GLogFields, using the standard [field names from journal

Link copied to clipboard

Return values from #GLogWriterFuncs to indicate whether the given log entry was successfully handled by the writer, or whether there was an error in handling it (and hence a fallback writer should be used).

Link copied to clipboard
class MainContext(val glibMainContextPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

The GMainContext struct is an opaque data type representing a set of sources to be handled in a main loop.

Link copied to clipboard
class MainContextFlags(val mask: <Error class: unknown class>) : Bitfield<MainContextFlags>

Flags to pass to ctor@GLib.MainContext.new_with_flags which affect the behaviour of a struct@GLib.MainContext.

Link copied to clipboard

Opaque type. See g_main_context_pusher_new() for details.

Link copied to clipboard
class MainLoop(val glibMainLoopPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

The GMainLoop struct is an opaque data type representing the main event loop of a GLib or GTK application.

Link copied to clipboard
class MappedFile(val glibMappedFilePointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

The #GMappedFile represents a file mapping created with g_mapped_file_new(). It has only private members and should not be accessed directly.

Link copied to clipboard
class MarkupCollectType(val mask: <Error class: unknown class>) : Bitfield<MarkupCollectType>

A mixed enumerated type and flags field. You must specify one type (string, strdup, boolean, tristate). Additionally, you may optionally bitwise OR the type with the flag %G_MARKUP_COLLECT_OPTIONAL.

Link copied to clipboard

Error codes returned by markup parsing.

Link copied to clipboard
class MarkupErrorException(val error: Error, val code: MarkupError) : GLibException
Link copied to clipboard
class MarkupParseContext(val glibMarkupParseContextPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

A parse context is used to parse a stream of bytes that you expect to contain marked-up text.

Link copied to clipboard
class MarkupParseFlags(val mask: <Error class: unknown class>) : Bitfield<MarkupParseFlags>

Flags that affect the behaviour of the parser.

Link copied to clipboard
class MarkupParser(val glibMarkupParserPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

Any of the fields in #GMarkupParser can be null, in which case they will be ignored. Except for the @error function, any of these callbacks can set an error; in particular the %G_MARKUP_ERROR_UNKNOWN_ELEMENT, %G_MARKUP_ERROR_UNKNOWN_ATTRIBUTE, and %G_MARKUP_ERROR_INVALID_CONTENT errors are intended to be set from these callbacks. If you set an error from a callback, g_markup_parse_context_parse() will report that error back to its caller.

Link copied to clipboard
class MatchInfo(val glibMatchInfoPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

A GMatchInfo is an opaque struct used to return information about matches.

Link copied to clipboard
class MemChunk(val glibMemChunkPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance
Link copied to clipboard
class MemVTable(val glibMemVTablePointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

A set of functions used to perform memory allocation. The same #GMemVTable must be used for all allocations in the same program; a call to g_mem_set_vtable(), if it exists, should be prior to any use of GLib.

Link copied to clipboard
class Mutex(val glibMutexPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

The #GMutex struct is an opaque data structure to represent a mutex (mutual exclusion). It can be used to protect data against shared access.

Link copied to clipboard
typealias MutexLocker = Unit

Opaque type. See g_mutex_locker_new() for details.

Link copied to clipboard
class Node(val glibNodePointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

The #GNode struct represents one node in a glib-N-ary-Trees.

Link copied to clipboard
typealias NodeForeachFunc = (node: Node, <Error class: unknown class>?) -> Unit

Specifies the type of function passed to g_node_children_foreach(). The function is called with each child node, together with the user data passed to g_node_children_foreach().

Link copied to clipboard
typealias NodeTraverseFunc = (node: Node, <Error class: unknown class>?) -> Boolean

Specifies the type of function passed to g_node_traverse(). The function is called with each of the nodes visited, together with the user data passed to g_node_traverse(). If the function returns true, then the traversal is stopped.

Link copied to clipboard

Defines how a Unicode string is transformed in a canonical form, standardizing such issues as whether a character with an accent is represented as a base character and combining accent or as a single precomposed character. Unicode strings should generally be normalized before comparing them.

Link copied to clipboard

Error codes returned by functions converting a string to a number.

Link copied to clipboard
Link copied to clipboard
class Once(val glibOncePointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

A #GOnce struct controls a one-time initialization function. Any one-time initialization function must have its own unique #GOnce struct.

Link copied to clipboard

The possible statuses of a one-time initialization function controlled by a #GOnce struct.

Link copied to clipboard

The #GOptionArg enum values determine which type of extra argument the options expect to find. If an option expects an extra argument, it can be specified in several ways; with a short option: -x arg, with a long option: --name arg or combined in a single argument: --name=arg.

Link copied to clipboard
class OptionContext(val glibOptionContextPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

A GOptionContext struct defines which options are accepted by the commandline option parser. The struct has only private fields and should not be directly accessed.

Link copied to clipboard
class OptionEntry(val glibOptionEntryPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

A GOptionEntry struct defines a single option. To have an effect, they must be added to a #GOptionGroup with g_option_context_add_main_entries() or g_option_group_add_entries().

Link copied to clipboard

Error codes returned by option parsing.

Link copied to clipboard
class OptionErrorException(val error: Error, val code: OptionError) : GLibException
Link copied to clipboard
class OptionFlags(val mask: <Error class: unknown class>) : Bitfield<OptionFlags>

Flags which modify individual options.

Link copied to clipboard
class OptionGroup(val glibOptionGroupPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

A GOptionGroup struct defines the options in a single group. The struct has only private fields and should not be directly accessed.

Link copied to clipboard
class PathBuf(val glibPathBufPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

GPathBuf is a helper type that allows you to easily build paths from individual elements, using the platform specific conventions for path separators.

Link copied to clipboard
class PatternSpec(val glibPatternSpecPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

A GPatternSpec struct is the ‘compiled’ form of a glob-style pattern.

Link copied to clipboard
typealias Pid = <Error class: unknown class>

A type which is used to hold a process identification.

Link copied to clipboard
class PollFd(val glibPollFdPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

Represents a file descriptor, which events to poll for, and which events occurred.

Link copied to clipboard
typealias PollFunc = (ufds: PollFd, <Error class: unknown class>, <Error class: unknown class>) -> <Error class: unknown class>

Specifies the type of function passed to g_main_context_set_poll_func(). The semantics of the function should match those of the poll() system call.

Link copied to clipboard
typealias PrintFunc = (string: String) -> Unit

Specifies the type of the print handler functions. These are called with the complete formatted string to output.

Link copied to clipboard
class Private(val glibPrivatePointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

The #GPrivate struct is an opaque data structure to represent a thread-local data key. It is approximately equivalent to the pthread_setspecific()/pthread_getspecific() APIs on POSIX and to TlsSetValue()/TlsGetValue() on Windows.

Link copied to clipboard
class PtrArray(val glibPtrArrayPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

Contains the public fields of a pointer array.

Link copied to clipboard
typealias Quark = <Error class: unknown class>

A GQuark is a non-zero integer which uniquely identifies a particular string.

Link copied to clipboard
class Queue(val glibQueuePointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

Contains the public fields of a glib-Double-ended-Queues.

Link copied to clipboard
class Rand(val glibRandPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

The GRand struct is an opaque data structure. It should only be accessed through the g_rand_* functions.

Link copied to clipboard
class RecMutex(val glibRecMutexPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

The GRecMutex struct is an opaque data structure to represent a recursive mutex. It is similar to a #GMutex with the difference that it is possible to lock a GRecMutex multiple times in the same thread without deadlock. When doing so, care has to be taken to unlock the recursive mutex as often as it has been locked.

Link copied to clipboard
typealias RecMutexLocker = Unit

Opaque type. See g_rec_mutex_locker_new() for details.

Link copied to clipboard
typealias RefString = Char

A typedef for a reference-counted string. A pointer to a #GRefString can be treated like a standard char* array by all code, but can additionally have g_ref_string_*() methods called on it. g_ref_string_*() methods cannot be called on char* arrays not allocated using g_ref_string_new().

Link copied to clipboard
class Regex(val glibRegexPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

A GRegex is the "compiled" form of a regular expression pattern.

Link copied to clipboard
class RegexCompileFlags(val mask: <Error class: unknown class>) : Bitfield<RegexCompileFlags>

Flags specifying compile-time options.

Link copied to clipboard

Error codes returned by regular expressions functions.

Link copied to clipboard
class RegexErrorException(val error: Error, val code: RegexError) : GLibException
Link copied to clipboard
typealias RegexEvalCallback = (matchInfo: MatchInfo, result: String) -> Boolean

Specifies the type of the function passed to g_regex_replace_eval(). It is called for each occurrence of the pattern in the string passed to g_regex_replace_eval(), and it should append the replacement to

Link copied to clipboard
class RegexMatchFlags(val mask: <Error class: unknown class>) : Bitfield<RegexMatchFlags>

Flags specifying match-time options.

Link copied to clipboard
class Relation(val glibRelationPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

This is deprecated since version 2.26.

Link copied to clipboard
class RwLock(val glibRwLockPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

The GRWLock struct is an opaque data structure to represent a reader-writer lock. It is similar to a #GMutex in that it allows multiple threads to coordinate access to a shared resource.

Link copied to clipboard

Opaque type. See g_rw_lock_reader_locker_new() for details.

Link copied to clipboard

Opaque type. See g_rw_lock_writer_locker_new() for details.

Link copied to clipboard
class Scanner(val glibScannerPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

GScanner provides a general-purpose lexical scanner.

Link copied to clipboard
class ScannerConfig(val glibScannerConfigPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

Specifies the #GScanner parser configuration. Most settings can be changed during the parsing phase and will affect the lexical parsing of the next unpeeked token.

Link copied to clipboard
typealias ScannerMsgFunc = (scanner: Scanner, message: String, error: Boolean) -> Unit

Specifies the type of the message handler function.

Link copied to clipboard

An enumeration specifying the base position for a g_io_channel_seek_position() operation.

Link copied to clipboard
class Sequence(val glibSequencePointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

The #GSequence struct is an opaque data type representing a glib-Sequences data type.

Link copied to clipboard
class SequenceIter(val glibSequenceIterPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

The #GSequenceIter struct is an opaque data type representing an iterator pointing into a #GSequence.

Link copied to clipboard
typealias SequenceIterCompareFunc = (a: SequenceIter, b: SequenceIter, <Error class: unknown class>?) -> <Error class: unknown class>

A #GSequenceIterCompareFunc is a function used to compare iterators. It must return zero if the iterators compare equal, a negative value if @a comes before @b, and a positive value if @b comes before @a.

Link copied to clipboard

Error codes returned by shell functions.

Link copied to clipboard
class ShellErrorException(val error: Error, val code: ShellError) : GLibException
Link copied to clipboard
Link copied to clipboard
class SList(val glibSListPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

The #GSList struct is used for each element in the singly-linked list.

Link copied to clipboard
class Source(val glibSourcePointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

The GSource struct is an opaque data type representing an event source.

Link copied to clipboard
class SourceCallbackFuncs(val glibSourceCallbackFuncsPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

The GSourceCallbackFuncs struct contains functions for managing callback objects.

Link copied to clipboard
typealias SourceDisposeFunc = (source: Source) -> Unit

Dispose function for @source. See method@GLib.Source.set_dispose_function for details.

Link copied to clipboard
typealias SourceDummyMarshal = () -> Unit

This is just a placeholder for #GClosureMarshal, which cannot be used here for dependency reasons.

Link copied to clipboard
typealias SourceFunc = () -> Boolean

Specifies the type of function passed to func@GLib.timeout_add, func@GLib.timeout_add_full, func@GLib.idle_add, and func@GLib.idle_add_full.

Link copied to clipboard
class SourceFuncs(val glibSourceFuncsPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

The GSourceFuncs struct contains a table of functions used to handle event sources in a generic manner.

Link copied to clipboard
typealias SourceFuncsCheckFunc = (source: Source) -> Boolean

Checks if the source is ready to be dispatched.

Link copied to clipboard
typealias SourceFuncsDispatchFunc = (source: Source) -> Boolean

Dispatches the source callback.

Link copied to clipboard
typealias SourceFuncsFinalizeFunc = (source: Source) -> Unit

Finalizes the source.

Link copied to clipboard
typealias SourceFuncsPrepareFunc = (source: Source) -> Boolean

Checks the source for readiness.

Link copied to clipboard
typealias SourceOnceFunc = () -> Unit

A source function that is only called once before being removed from the main context automatically.

Link copied to clipboard
typealias SpawnChildSetupFunc = (<Error class: unknown class>?) -> Unit

Specifies the type of the setup function passed to g_spawn_async(), g_spawn_sync() and g_spawn_async_with_pipes(), which can, in very limited ways, be used to affect the child's execution.

Link copied to clipboard

Error codes returned by spawning processes.

Link copied to clipboard
class SpawnErrorException(val error: Error, val code: SpawnError) : GLibException
Link copied to clipboard
class SpawnFlags(val mask: <Error class: unknown class>) : Bitfield<SpawnFlags>

Flags passed to g_spawn_sync(), g_spawn_async() and g_spawn_async_with_pipes().

Link copied to clipboard
class StatBuf(val glibStatBufPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

A type corresponding to the appropriate struct type for the stat() system call, depending on the platform and/or compiler being used.

Link copied to clipboard
class StaticMutex(val glibStaticMutexPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

A #GStaticMutex works like a #GMutex.

Link copied to clipboard
class StaticRecMutex(val glibStaticRecMutexPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

A #GStaticRecMutex works like a #GStaticMutex, but it can be locked multiple times by one thread. If you enter it n times, you have to unlock it n times again to let other threads lock it. An exception is the function g_static_rec_mutex_unlock_full(): that allows you to unlock a #GStaticRecMutex completely returning the depth, (i.e. the number of times this mutex was locked). The depth can later be used to restore the state of the #GStaticRecMutex by calling g_static_rec_mutex_lock_full(). In GLib 2.32, #GStaticRecMutex has been deprecated in favor of #GRecMutex.

Link copied to clipboard
class StaticRwLock(val glibStaticRwLockPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

This is deprecated since version 2.32.

Link copied to clipboard
class String(val glibStringPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

A GString is an object that handles the memory management of a C string.

Link copied to clipboard
class StringChunk(val glibStringChunkPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

GStringChunk provides efficient storage of groups of strings

Link copied to clipboard
class StrvBuilder(val glibStrvBuilderPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

GStrvBuilder is a helper object to build a null-terminated string arrays.

Link copied to clipboard
class TestConfig(val glibTestConfigPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance
Link copied to clipboard
typealias TestDataFunc = () -> Unit

The type used for test case functions that take an extra pointer argument.

Link copied to clipboard

The type of file to return the filename for, when used with g_test_build_filename().

Link copied to clipboard
typealias TestFixtureFunc = (<Error class: unknown class>) -> Unit

The type used for functions that operate on test fixtures. This is used for the fixture setup and teardown functions as well as for the testcases themselves.

Link copied to clipboard
typealias TestFunc = () -> Unit

The type used for test case functions.

Link copied to clipboard
class TestLogBuffer(val glibTestLogBufferPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance
Link copied to clipboard
typealias TestLogFatalFunc = (logDomain: String, logLevel: LogLevelFlags, message: String) -> Boolean

Specifies the prototype of fatal log handler functions.

Link copied to clipboard
class TestLogMsg(val glibTestLogMsgPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
class TestSubprocessFlags(val mask: <Error class: unknown class>) : Bitfield<TestSubprocessFlags>

Flags to pass to g_test_trap_subprocess() to control input and output.

Link copied to clipboard
class TestTrapFlags(val mask: <Error class: unknown class>) : Bitfield<TestTrapFlags>

This is deprecated since version 2.38.

Link copied to clipboard
class Thread(val glibThreadPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

The #GThread struct represents a running thread. This struct is returned by g_thread_new() or g_thread_try_new(). You can obtain the #GThread struct representing the current thread by calling g_thread_self().

Link copied to clipboard

Possible errors of thread related functions.

Link copied to clipboard
class ThreadErrorException(val error: Error, val code: ThreadError) : GLibException
Link copied to clipboard
typealias ThreadFunc = (<Error class: unknown class>?) -> <Error class: unknown class>?

Specifies the type of the @func functions passed to g_thread_new() or g_thread_try_new().

Link copied to clipboard
class ThreadFunctions(val glibThreadFunctionsPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

This function table is no longer used by g_thread_init() to initialize the thread system.

Link copied to clipboard
class ThreadPool(val glibThreadPoolPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

The GThreadPool struct represents a thread pool.

Link copied to clipboard

This is deprecated since version 2.32.

Link copied to clipboard
typealias Time = <Error class: unknown class>

This is deprecated since version 2.62.

Link copied to clipboard
class Timer(val glibTimerPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

GTimer records a start time, and counts microseconds elapsed since that time.

Link copied to clipboard
typealias TimeSpan = <Error class: unknown class>

A value representing an interval of time, in microseconds.

Link copied to clipboard

Disambiguates a given time in two ways.

Link copied to clipboard
class TimeVal(val glibTimeValPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

This is deprecated since version 2.62.

Link copied to clipboard
class TimeZone(val glibTimeZonePointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

A GTimeZone represents a time zone, at no particular point in time.

Link copied to clipboard

The possible types of token returned from each g_scanner_get_next_token() call.

Link copied to clipboard
class TokenValue(val glibTokenValuePointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

A union holding the value of the token.

Link copied to clipboard
typealias TranslateFunc = (str: String, <Error class: unknown class>?) -> String

The type of functions which are used to translate user-visible strings, for output.

Link copied to clipboard
class TrashStack(val glibTrashStackPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

This is deprecated since version 2.48.

Link copied to clipboard
class TraverseFlags(val mask: <Error class: unknown class>) : Bitfield<TraverseFlags>

Specifies which nodes are visited during several of the tree functions, including g_node_traverse() and g_node_find().

Link copied to clipboard
typealias TraverseFunc = (<Error class: unknown class>?, <Error class: unknown class>?, <Error class: unknown class>?) -> Boolean

Specifies the type of function passed to g_tree_traverse(). It is passed the key and value of each node, together with the @user_data parameter passed to g_tree_traverse(). If the function returns true, the traversal is stopped.

Link copied to clipboard
typealias TraverseNodeFunc = (node: TreeNode, <Error class: unknown class>?) -> Boolean

Specifies the type of function passed to g_tree_foreach_node(). It is passed each node, together with the @user_data parameter passed to g_tree_foreach_node(). If the function returns true, the traversal is stopped.

Link copied to clipboard

Specifies the type of traversal performed by g_tree_traverse(), g_node_traverse() and g_node_find().

Link copied to clipboard
class Tree(val glibTreePointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

The GTree struct is an opaque data structure representing a glib-Balanced-Binary-Trees. It should be accessed only by using the following functions.

Link copied to clipboard
class TreeNode(val glibTreeNodePointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

An opaque type which identifies a specific node in a #GTree.

Link copied to clipboard
class Tuples(val glibTuplesPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

This is deprecated since version 2.26.

Link copied to clipboard

These are the possible line break classifications.

Link copied to clipboard

The #GUnicodeScript enumeration identifies different writing systems. The values correspond to the names as defined in the Unicode standard. The enumeration has been added in GLib 2.14, and is interchangeable with #PangoScript.

Link copied to clipboard

These are the possible character classifications from the Unicode specification. See Unicode Character Database.

Link copied to clipboard
typealias UnixFdSourceFunc = (<Error class: unknown class>, condition: IoCondition) -> Boolean

The type of functions to be called when a UNIX fd watch source triggers.

Link copied to clipboard
class UnixPipe(val glibUnixPipePointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

A Unix pipe. The advantage of this type over int[2] is that it can be closed automatically when it goes out of scope, using g_auto(GUnixPipe), on compilers that support that feature.

Link copied to clipboard

Mnemonic constants for the ends of a Unix pipe.

Link copied to clipboard
class Uri(val glibUriPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

The GUri type and related functions can be used to parse URIs into their components, and build valid URIs from individual components.

Link copied to clipboard

Error codes returned by #GUri methods.

Link copied to clipboard
class UriErrorException(val error: Error, val code: UriError) : GLibException
Link copied to clipboard
class UriFlags(val mask: <Error class: unknown class>) : Bitfield<UriFlags>

Flags that describe a URI.

Link copied to clipboard
class UriHideFlags(val mask: <Error class: unknown class>) : Bitfield<UriHideFlags>

Flags describing what parts of the URI to hide in g_uri_to_string_partial(). Note that %G_URI_HIDE_PASSWORD and %G_URI_HIDE_AUTH_PARAMS will only work if the #GUri was parsed with the corresponding flags.

Link copied to clipboard
class UriParamsFlags(val mask: <Error class: unknown class>) : Bitfield<UriParamsFlags>

Flags modifying the way parameters are handled by g_uri_parse_params() and #GUriParamsIter.

Link copied to clipboard
class UriParamsIter(val glibUriParamsIterPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

Many URI schemes include one or more attribute/value pairs as part of the URI value. For example scheme://server/path?query=string&is=there has two attributes – query=string and is=there – in its query part.

Link copied to clipboard

These are logical ids for special directories which are defined depending on the platform used. You should use g_get_user_special_dir() to retrieve the full path associated to the logical id.

Link copied to clipboard
class Variant(val glibVariantPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

GVariant is a variant datatype; it can contain one or more values along with information about the type of the values.

Link copied to clipboard
class VariantBuilder(val glibVariantBuilderPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

A utility type for constructing container-type #GVariant instances.

Link copied to clipboard

The range of possible top-level types of #GVariant instances.

Link copied to clipboard
class VariantDict(val glibVariantDictPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

#GVariantDict is a mutable interface to #GVariant dictionaries.

Link copied to clipboard
class VariantIter(val glibVariantIterPointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

#GVariantIter is an opaque data structure and can only be accessed using the following functions.

Link copied to clipboard

Error codes returned by parsing text-format GVariants.

Link copied to clipboard
Link copied to clipboard
class VariantType(val glibVariantTypePointer: <Error class: unknown class><<Error class: unknown class>>) : ProxyInstance

A type in the type@GLib.Variant type system.

Link copied to clipboard
typealias VoidFunc = () -> Unit

Declares a type of function which takes no arguments and has no return value. It is used to specify the type function passed to g_atexit().

Properties

Link copied to clipboard
val CacheDestroyFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class>?) -> Unit>>
Link copied to clipboard
val CacheDupFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class>?) -> <Error class: unknown class>?>>
Link copied to clipboard
val CacheNewFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class>?) -> <Error class: unknown class>?>>
Link copied to clipboard
val ChildWatchFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class>, <Error class: unknown class>) -> Unit>>
Link copied to clipboard
val ClearHandleFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class>) -> Unit>>
Link copied to clipboard
val CompareDataFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class>?, <Error class: unknown class>?) -> <Error class: unknown class>>>
Link copied to clipboard
val CompareFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class>?, <Error class: unknown class>?) -> <Error class: unknown class>>>
Link copied to clipboard
val CompletionFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class>?) -> <Error class: unknown class><<Error class: unknown class>>>>
Link copied to clipboard
val CompletionStrncmpFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class><<Error class: unknown class>>, <Error class: unknown class><<Error class: unknown class>>, <Error class: unknown class>) -> <Error class: unknown class>>>
Link copied to clipboard
val CopyFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class>, <Error class: unknown class>?) -> <Error class: unknown class>>>
Link copied to clipboard
val DataForeachFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class>, <Error class: unknown class>?) -> Unit>>
Link copied to clipboard
val DestroyNotifyFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class>?) -> Unit>>
Link copied to clipboard
val DuplicateFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class>?) -> <Error class: unknown class>?>>
Link copied to clipboard
val EqualFuncFullFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class>?, <Error class: unknown class>?) -> <Error class: unknown class>>>
Link copied to clipboard
val EqualFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class>?, <Error class: unknown class>?) -> <Error class: unknown class>>>
Link copied to clipboard
val ErrorClearFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class><<Error class: unknown class>>) -> Unit>>
Link copied to clipboard
val ErrorCopyFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class><<Error class: unknown class>>, <Error class: unknown class><<Error class: unknown class>>) -> Unit>>
Link copied to clipboard
val ErrorInitFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class><<Error class: unknown class>>) -> Unit>>
Link copied to clipboard
val FreeFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class>?) -> Unit>>
Link copied to clipboard
val FuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class>?) -> Unit>>
Link copied to clipboard
val HashFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class>?) -> <Error class: unknown class>>>
Link copied to clipboard
val HFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class>?, <Error class: unknown class>?) -> Unit>>
Link copied to clipboard
val HookCheckFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class>?) -> <Error class: unknown class>>>
Link copied to clipboard
val HookCheckMarshallerFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class><<Error class: unknown class>>, <Error class: unknown class>?) -> <Error class: unknown class>>>
Link copied to clipboard
val HookCompareFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class><<Error class: unknown class>>, <Error class: unknown class><<Error class: unknown class>>) -> <Error class: unknown class>>>
Link copied to clipboard
val HookFinalizeFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class><<Error class: unknown class>>, <Error class: unknown class><<Error class: unknown class>>) -> Unit>>
Link copied to clipboard
val HookFindFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class><<Error class: unknown class>>, <Error class: unknown class>?) -> <Error class: unknown class>>>
Link copied to clipboard
val HookFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class>?) -> Unit>>
Link copied to clipboard
val HookMarshallerFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class><<Error class: unknown class>>, <Error class: unknown class>?) -> Unit>>
Link copied to clipboard
val HrFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class>?, <Error class: unknown class>?) -> <Error class: unknown class>>>
Link copied to clipboard
val IoFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class><<Error class: unknown class>>, <Error class: unknown class>, <Error class: unknown class>?) -> <Error class: unknown class>>>
Link copied to clipboard
val LogFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class><<Error class: unknown class>>?, <Error class: unknown class>, <Error class: unknown class><<Error class: unknown class>>) -> Unit>>
Link copied to clipboard
val LogWriterFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class>, <Error class: unknown class>) -> <Error class: unknown class>>>
Link copied to clipboard
val NodeForeachFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class><<Error class: unknown class>>, <Error class: unknown class>?) -> Unit>>
Link copied to clipboard
val NodeTraverseFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class><<Error class: unknown class>>, <Error class: unknown class>?) -> <Error class: unknown class>>>
Link copied to clipboard
val PollFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class><<Error class: unknown class>>, <Error class: unknown class>, <Error class: unknown class>) -> <Error class: unknown class>>>
Link copied to clipboard
val PrintFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class><<Error class: unknown class>>) -> Unit>>
Link copied to clipboard
val RegexEvalCallbackFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class><<Error class: unknown class>>, <Error class: unknown class><<Error class: unknown class>>) -> <Error class: unknown class>>>
Link copied to clipboard
val ScannerMsgFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class><<Error class: unknown class>>, <Error class: unknown class><<Error class: unknown class>>, <Error class: unknown class>) -> Unit>>
Link copied to clipboard
val SequenceIterCompareFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class><<Error class: unknown class>>, <Error class: unknown class><<Error class: unknown class>>, <Error class: unknown class>?) -> <Error class: unknown class>>>
Link copied to clipboard
val SourceDisposeFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class><<Error class: unknown class>>) -> Unit>>
Link copied to clipboard
val SourceDummyMarshalFunc: <Error class: unknown class><<Error class: unknown class><() -> Unit>>
Link copied to clipboard
val SourceFuncFunc: <Error class: unknown class><<Error class: unknown class><() -> <Error class: unknown class>>>
Link copied to clipboard
val SourceFuncsCheckFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class><<Error class: unknown class>>) -> <Error class: unknown class>>>
Link copied to clipboard
val SourceFuncsDispatchFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class><<Error class: unknown class>>) -> <Error class: unknown class>>>
Link copied to clipboard
val SourceFuncsFinalizeFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class><<Error class: unknown class>>) -> Unit>>
Link copied to clipboard
val SourceFuncsPrepareFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class><<Error class: unknown class>>) -> <Error class: unknown class>>>
Link copied to clipboard
val SourceOnceFuncFunc: <Error class: unknown class><<Error class: unknown class><() -> Unit>>
Link copied to clipboard
val SpawnChildSetupFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class>?) -> Unit>>
Link copied to clipboard
val TestDataFuncFunc: <Error class: unknown class><<Error class: unknown class><() -> Unit>>
Link copied to clipboard
val TestFixtureFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class>) -> Unit>>
Link copied to clipboard
val TestFuncFunc: <Error class: unknown class><<Error class: unknown class><() -> Unit>>
Link copied to clipboard
val TestLogFatalFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class><<Error class: unknown class>>, <Error class: unknown class>, <Error class: unknown class><<Error class: unknown class>>) -> <Error class: unknown class>>>
Link copied to clipboard
val ThreadFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class>?) -> <Error class: unknown class>?>>
Link copied to clipboard
val TranslateFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class><<Error class: unknown class>>, <Error class: unknown class>?) -> <Error class: unknown class><<Error class: unknown class>>>>
Link copied to clipboard
val TraverseFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class>?, <Error class: unknown class>?, <Error class: unknown class>?) -> <Error class: unknown class>>>
Link copied to clipboard
val TraverseNodeFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class><<Error class: unknown class>>, <Error class: unknown class>?) -> <Error class: unknown class>>>
Link copied to clipboard
val UnixFdSourceFuncFunc: <Error class: unknown class><<Error class: unknown class><(<Error class: unknown class>, <Error class: unknown class>) -> <Error class: unknown class>>>
Link copied to clipboard
val VoidFuncFunc: <Error class: unknown class><<Error class: unknown class><() -> Unit>>