@@ -1835,7 +1835,7 @@ $(Expr(:toplevel, quote
1835
1835
ret = ccall(("g_desktop_app_info_launch_action", libgio), Nothing, (Ptr{GObject}, Cstring, Ptr{GObject}), instance, _action_name, _launch_context_maybe)
1836
1836
nothing
1837
1837
end
1838
- function launch_uris_as_manager(instance::GDesktopAppInfo, _uris::GLib.LList{GLib._GList{Cstring }}, _launch_context::Maybe(GAppLaunchContext), _spawn_flags, _user_setup::Maybe(Function), _pid_callback::Maybe(Function))
1838
+ function launch_uris_as_manager(instance::GDesktopAppInfo, _uris::GLib.LList{GLib._GList{String }}, _launch_context::Maybe(GAppLaunchContext), _spawn_flags, _user_setup::Maybe(Function), _pid_callback::Maybe(Function))
1839
1839
_launch_context_maybe = nothing_to_null(_launch_context)
1840
1840
if _user_setup === nothing
1841
1841
_user_setup_cfunc = C_NULL
@@ -1855,12 +1855,12 @@ $(Expr(:toplevel, quote
1855
1855
end
1856
1856
end
1857
1857
err = err_buf()
1858
- ret = ccall(("g_desktop_app_info_launch_uris_as_manager", libgio), Cint, (Ptr{GObject}, Ptr{GLib._GList{Cstring }}, Ptr{GObject}, UInt32, Ptr{Cvoid}, Ptr{Nothing}, Ptr{Cvoid}, Ptr{Nothing}, Ptr{Ptr{GError}}), instance, _uris, _launch_context_maybe, _spawn_flags, _user_setup_cfunc, _user_setup_closure, _pid_callback_cfunc, _pid_callback_closure, err)
1858
+ ret = ccall(("g_desktop_app_info_launch_uris_as_manager", libgio), Cint, (Ptr{GObject}, Ptr{GLib._GList{String }}, Ptr{GObject}, UInt32, Ptr{Cvoid}, Ptr{Nothing}, Ptr{Cvoid}, Ptr{Nothing}, Ptr{Ptr{GError}}), instance, _uris, _launch_context_maybe, _spawn_flags, _user_setup_cfunc, _user_setup_closure, _pid_callback_cfunc, _pid_callback_closure, err)
1859
1859
check_err(err)
1860
1860
ret2 = convert(Bool, ret)
1861
1861
ret2
1862
1862
end
1863
- function launch_uris_as_manager_with_fds(instance::GDesktopAppInfo, _uris::GLib.LList{GLib._GList{Cstring }}, _launch_context::Maybe(GAppLaunchContext), _spawn_flags, _user_setup::Maybe(Function), _pid_callback::Maybe(Function), _stdin_fd::Integer, _stdout_fd::Integer, _stderr_fd::Integer)
1863
+ function launch_uris_as_manager_with_fds(instance::GDesktopAppInfo, _uris::GLib.LList{GLib._GList{String }}, _launch_context::Maybe(GAppLaunchContext), _spawn_flags, _user_setup::Maybe(Function), _pid_callback::Maybe(Function), _stdin_fd::Integer, _stdout_fd::Integer, _stderr_fd::Integer)
1864
1864
_launch_context_maybe = nothing_to_null(_launch_context)
1865
1865
if _user_setup === nothing
1866
1866
_user_setup_cfunc = C_NULL
@@ -1880,7 +1880,7 @@ $(Expr(:toplevel, quote
1880
1880
end
1881
1881
end
1882
1882
err = err_buf()
1883
- ret = ccall(("g_desktop_app_info_launch_uris_as_manager_with_fds", libgio), Cint, (Ptr{GObject}, Ptr{GLib._GList{Cstring }}, Ptr{GObject}, UInt32, Ptr{Cvoid}, Ptr{Nothing}, Ptr{Cvoid}, Ptr{Nothing}, Int32, Int32, Int32, Ptr{Ptr{GError}}), instance, _uris, _launch_context_maybe, _spawn_flags, _user_setup_cfunc, _user_setup_closure, _pid_callback_cfunc, _pid_callback_closure, _stdin_fd, _stdout_fd, _stderr_fd, err)
1883
+ ret = ccall(("g_desktop_app_info_launch_uris_as_manager_with_fds", libgio), Cint, (Ptr{GObject}, Ptr{GLib._GList{String }}, Ptr{GObject}, UInt32, Ptr{Cvoid}, Ptr{Nothing}, Ptr{Cvoid}, Ptr{Nothing}, Int32, Int32, Int32, Ptr{Ptr{GError}}), instance, _uris, _launch_context_maybe, _spawn_flags, _user_setup_cfunc, _user_setup_closure, _pid_callback_cfunc, _pid_callback_closure, _stdin_fd, _stdout_fd, _stderr_fd, err)
1884
1884
check_err(err)
1885
1885
ret2 = convert(Bool, ret)
1886
1886
ret2
@@ -1939,10 +1939,10 @@ $(Expr(:toplevel, quote
1939
1939
function launch(instance::GDesktopAppInfo, _files::Maybe(GLib.LList{GLib._GList{Ptr{GObject}}}), _context::Maybe(GAppLaunchContext))
1940
1940
launch(GAppInfo(instance), _files, _context)
1941
1941
end
1942
- function launch_uris(instance::GDesktopAppInfo, _uris::Maybe(GLib.LList{GLib._GList{Cstring }}), _context::Maybe(GAppLaunchContext))
1942
+ function launch_uris(instance::GDesktopAppInfo, _uris::Maybe(GLib.LList{GLib._GList{String }}), _context::Maybe(GAppLaunchContext))
1943
1943
launch_uris(GAppInfo(instance), _uris, _context)
1944
1944
end
1945
- function launch_uris_async(instance::GDesktopAppInfo, _uris::Maybe(GLib.LList{GLib._GList{Cstring }}), _context::Maybe(GAppLaunchContext), _cancellable::Maybe(GCancellable), _callback::Maybe(Function))
1945
+ function launch_uris_async(instance::GDesktopAppInfo, _uris::Maybe(GLib.LList{GLib._GList{String }}), _context::Maybe(GAppLaunchContext), _cancellable::Maybe(GCancellable), _callback::Maybe(Function))
1946
1946
launch_uris_async(GAppInfo(instance), _uris, _context, _cancellable, _callback)
1947
1947
end
1948
1948
function launch_uris_finish(instance::GDesktopAppInfo, _result::GAsyncResult)
0 commit comments