Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions glib/glib.odin
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ _GMainContext :: struct #packed {}
MainContext :: _GMainContext
_GMainLoop :: struct #packed {}
MainLoop :: _GMainLoop
Source :: _GSource
// Source :: _GSource
_GSourcePrivate :: struct #packed {}
SourcePrivate :: _GSourcePrivate
SourceCallbackFuncs :: _GSourceCallbackFuncs
Expand All @@ -383,7 +383,7 @@ SourceFunc :: #type proc "c" (user_data: pointer) -> boolean
SourceOnceFunc :: #type proc "c" (user_data: pointer)
ChildWatchFunc :: #type proc "c" (pid: Pid, wait_status: int_, user_data: pointer)
SourceDisposeFunc :: #type proc "c" (source: ^Source)
_GSource :: struct {
Source :: struct {
callback_data: pointer,
callback_funcs: [^]SourceCallbackFuncs,
source_funcs: [^]SourceFuncs,
Expand Down