Marcel Tiede
Marcel Tiede
In GLib there is an `UnhandledException` class which integrates with the `MainLoopSynchronizationContext`. Does it make sense to have this integration of there is: ```CS // Listen for unhandled exceptions. AppDomain.CurrentDomain.UnhandledException...
Code: https://gitlab.gnome.org/GNOME/gtk/-/blob/main/demos/gtk-demo/peg_solitaire.c
## Pull request type Please check the type of change your PR introduces: - [ ] Bugfix - [ ] New feature or enhancement - [ ] UI change (please...
Currently during runtime the operating system is checked for several string operations to decide how to decode a pointer of `w_char_t` data as the size of `w_char_t` is different between...
Currently several UTF32 strings are read from the hid api. To do so the length of the string must be calculated which is done manually in [UTF32](https://github.com/badcel/HidApi.Net/blob/64ec544e1c5822acad5cb77c9413aba3e65942fb/src/HidApi.Net/Internal/Utf32.cs#L5) class. Verify if...
- [x] I agree that my contribution may be licensed either under MIT or any version of LGPL license.
- [x] I agree that my contribution may be licensed either under MIT or any version of LGPL license.
If a DLL not found exception occurs it can be due to a missing Module initialization (e.g. `GtkSource.Module.Initialize()`). This applies to GtkSource and WebKit currently as Gtk is not dependent...
Those functions should only be used as a fallback mechanic as invoking them results in a GType table lookup. As an alternative there are `copy-func` and `free-func`. as they are...