/* GIO - GLib Input, Output and Streaming Library * * Copyright (C) 2006-2007 Red Hat, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General * Public License along with this library; if not, see <http://www.gnu.org/licenses/>. * * Author: Alexander Larsson <alexl@redhat.com> */ #ifndef __GIO_TYPES_H__ #define __GIO_TYPES_H__ #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) #error "Only <gio/gio.h> can be included directly." #endif #include <gio/gioenums.h> G_BEGIN_DECLS typedef struct _GAppLaunchContext GAppLaunchContext; typedef struct _GAppInfo GAppInfo; /* Dummy typedef */ typedef struct _GAsyncResult GAsyncResult; /* Dummy typedef */ typedef struct _GAsyncInitable GAsyncInitable; typedef struct _GBufferedInputStream GBufferedInputStream; typedef struct _GBufferedOutputStream GBufferedOutputStream; typedef struct _GCancellable GCancellable; typedef struct _GCharsetConverter GCharsetConverter; typedef struct _GConverter GConverter; typedef struct _GConverterInputStream GConverterInputStream; typedef struct _GConverterOutputStream GConverterOutputStream; typedef struct _GDatagramBased GDatagramBased; typedef struct _GDataInputStream GDataInputStream; typedef struct _GSimplePermission GSimplePermission; typedef struct _GZlibCompressor GZlibCompressor; typedef struct _GZlibDecompressor GZlibDecompressor; typedef struct _GSimpleActionGroup GSimpleActionGroup; typedef struct _GRemoteActionGroup GRemoteActionGroup; typedef struct _GDBusActionGroup GDBusActionGroup; typedef struct _GActionMap GActionMap; typedef struct _GActionGroup GActionGroup; typedef struct _GPropertyAction GPropertyAction; typedef struct _GSimpleAction GSimpleAction; typedef struct _GAction GAction; typedef struct _GApplication GApplication; typedef struct _GApplicationCommandLine GApplicationCommandLine; typedef struct _GSettingsBackend GSettingsBackend; typedef struct _GSettings GSettings; typedef struct _GPermission GPermission; typedef struct _GMenuModel GMenuModel; typedef struct _GNotification GNotification; /** * GDrive: * * Opaque drive object. **/ typedef struct _GDrive GDrive; /* Dummy typedef */ typedef struct _GFileEnumerator GFileEnumerator; typedef struct _GFileMonitor GFileMonitor; typedef struct _GFilterInputStream GFilterInputStream; typedef struct _GFilterOutputStream GFilterOutputStream; /** * GFile: * * A handle to an object implementing the #GFileIface interface. * Generally stores a location within the file system. Handles do not * necessarily represent files or directories that currently exist. **/ typedef struct _GFile GFile; /* Dummy typedef */ typedef struct _GFileInfo GFileInfo; /** * GFileAttributeMatcher: * * Determines if a string matches a file attribute. **/ typedef struct _GFileAttributeMatcher GFileAttributeMatcher; typedef struct _GFileAttributeInfo GFileAttributeInfo; typedef struct _GFileAttributeInfoList GFileAttributeInfoList; typedef struct _GFileDescriptorBased GFileDescriptorBased; typedef struct _GFileInputStream GFileInputStream; typedef struct _GFileOutputStream GFileOutputStream; typedef struct _GFileIOStream GFileIOStream; typedef struct _GFileIcon GFileIcon; typedef struct _GFilenameCompleter GFilenameCompleter; typedef struct _GIcon GIcon; /* Dummy typedef */ typedef struct _GInetAddress GInetAddress; typedef struct _GInetAddressMask GInetAddressMask; typedef struct _GInetSocketAddress GInetSocketAddress; typedef struct _GNativeSocketAddress GNativeSocketAddress; typedef struct _GInputStream GInputStream; typedef struct _GInitable GInitable; typedef struct _GIOModule GIOModule; typedef struct _GIOExtensionPoint GIOExtensionPoint; typedef struct _GIOExtension GIOExtension; /** * GIOSchedulerJob: * * Opaque class for defining and scheduling IO jobs. **/ typedef struct _GIOSchedulerJob GIOSchedulerJob; typedef struct _GIOStreamAdapter GIOStreamAdapter; typedef struct _GLoadableIcon GLoadableIcon; /* Dummy typedef */ typedef struct _GBytesIcon GBytesIcon; typedef struct _GMemoryInputStream GMemoryInputStream; typedef struct _GMemoryOutputStream GMemoryOutputStream; /** * GMount: * * A handle to an object implementing the #GMountIface interface. **/ typedef struct _GMount GMount; /* Dummy typedef */ typedef struct _GMountOperation GMountOperation; typedef struct _GNetworkAddress GNetworkAddress; typedef struct _GNetworkMonitor GNetworkMonitor; typedef struct _GNetworkService GNetworkService; typedef struct _GOutputStream GOutputStream; typedef struct _GIOStream GIOStream; typedef struct _GSimpleIOStream GSimpleIOStream; typedef struct _GPollableInputStream GPollableInputStream; /* Dummy typedef */ typedef struct _GPollableOutputStream GPollableOutputStream; /* Dummy typedef */ typedef struct _GResolver GResolver; /** * GResource: * * A resource bundle. * * Since: 2.32 */ typedef struct _GResource GResource; typedef struct _GSeekable GSeekable; typedef struct _GSimpleAsyncResult GSimpleAsyncResult; /** * GSocket: * * A lowlevel network socket object. * * Since: 2.22 **/ typedef struct _GSocket GSocket; /** * GSocketControlMessage: * * Base class for socket-type specific control messages that can be sent and * received over #GSocket. **/ typedef struct _GSocketControlMessage GSocketControlMessage; /** * GSocketClient: * * A helper class for network clients to make connections. * * Since: 2.22 **/ typedef struct _GSocketClient GSocketClient; /** * GSocketConnection: * * A socket connection GIOStream object for connection-oriented sockets. * * Since: 2.22 **/ typedef struct _GSocketConnection GSocketConnection; /** * GSocketListener: * * A helper class for network servers to listen for and accept connections. * * Since: 2.22 **/ typedef struct _GSocketListener GSocketListener; /** * GSocketService: * * A helper class for handling accepting incomming connections in the * glib mainloop. * * Since: 2.22 **/ typedef struct _GSocketService GSocketService; typedef struct _GSocketAddress GSocketAddress; typedef struct _GSocketAddressEnumerator GSocketAddressEnumerator; typedef struct _GSocketConnectable GSocketConnectable; typedef struct _GSrvTarget GSrvTarget; typedef struct _GTask GTask; /** * GTcpConnection: * * A #GSocketConnection for TCP/IP connections. * * Since: 2.22 **/ typedef struct _GTcpConnection GTcpConnection; typedef struct _GTcpWrapperConnection GTcpWrapperConnection; /** * GThreadedSocketService: * * A helper class for handling accepting incoming connections in the * glib mainloop and handling them in a thread. * * Since: 2.22 **/ typedef struct _GThreadedSocketService GThreadedSocketService; typedef struct _GDtlsConnection GDtlsConnection; typedef struct _GDtlsClientConnection GDtlsClientConnection; /* Dummy typedef */ typedef struct _GDtlsServerConnection GDtlsServerConnection; /* Dummy typedef */ typedef struct _GThemedIcon GThemedIcon; typedef struct _GTlsCertificate GTlsCertificate; typedef struct _GTlsClientConnection GTlsClientConnection; /* Dummy typedef */ typedef struct _GTlsConnection GTlsConnection; typedef struct _GTlsDatabase GTlsDatabase; typedef struct _GTlsFileDatabase GTlsFileDatabase; typedef struct _GTlsInteraction GTlsInteraction; typedef struct _GTlsPassword GTlsPassword; typedef struct _GTlsServerConnection GTlsServerConnection; /* Dummy typedef */ typedef struct _GVfs GVfs; /* Dummy typedef */ /** * GProxyResolver: * * A helper class to enumerate proxies base on URI. * * Since: 2.26 **/ typedef struct _GProxyResolver GProxyResolver; typedef struct _GProxy GProxy; typedef struct _GProxyAddress GProxyAddress; typedef struct _GProxyAddressEnumerator GProxyAddressEnumerator; /** * GVolume: * * Opaque mountable volume object. **/ typedef struct _GVolume GVolume; /* Dummy typedef */ typedef struct _GVolumeMonitor GVolumeMonitor; /** * GAsyncReadyCallback: * @source_object: (nullable): the object the asynchronous operation was started with. * @res: a #GAsyncResult. * @user_data: user data passed to the callback. * * Type definition for a function that will be called back when an asynchronous * operation within GIO has been completed. #GAsyncReadyCallback * callbacks from #GTask are guaranteed to be invoked in a later * iteration of the * [thread-default main context][g-main-context-push-thread-default] * where the #GTask was created. All other users of * #GAsyncReadyCallback must likewise call it asynchronously in a * later iteration of the main context. **/ typedef void (*GAsyncReadyCallback) (GObject *source_object, GAsyncResult *res, gpointer user_data); /** * GFileProgressCallback: * @current_num_bytes: the current number of bytes in the operation. * @total_num_bytes: the total number of bytes in the operation. * @user_data: user data passed to the callback. * * When doing file operations that may take a while, such as moving * a file or copying a file, a progress callback is used to pass how * far along that operation is to the application. **/ typedef void (*GFileProgressCallback) (goffset current_num_bytes, goffset total_num_bytes, gpointer user_data); /** * GFileReadMoreCallback: * @file_contents: the data as currently read. * @file_size: the size of the data currently read. * @callback_data: (closure): data passed to the callback. * * When loading the partial contents of a file with g_file_load_partial_contents_async(), * it may become necessary to determine if any more data from the file should be loaded. * A #GFileReadMoreCallback function facilitates this by returning %TRUE if more data * should be read, or %FALSE otherwise. * * Returns: %TRUE if more data should be read back. %FALSE otherwise. **/ typedef gboolean (* GFileReadMoreCallback) (const char *file_contents, goffset file_size, gpointer callback_data); /** * GFileMeasureProgressCallback: * @reporting: %TRUE if more reports will come * @current_size: the current cumulative size measurement * @num_dirs: the number of directories visited so far * @num_files: the number of non-directory files encountered * @user_data: the data passed to the original request for this callback * * This callback type is used by g_file_measure_disk_usage() to make * periodic progress reports when measuring the amount of disk spaced * used by a directory. * * These calls are made on a best-effort basis and not all types of * #GFile will support them. At the minimum, however, one call will * always be made immediately. * * In the case that there is no support, @reporting will be set to * %FALSE (and the other values undefined) and no further calls will be * made. Otherwise, the @reporting will be %TRUE and the other values * all-zeros during the first (immediate) call. In this way, you can * know which type of progress UI to show without a delay. * * For g_file_measure_disk_usage() the callback is made directly. For * g_file_measure_disk_usage_async() the callback is made via the * default main context of the calling thread (ie: the same way that the * final async result would be reported). * * @current_size is in the same units as requested by the operation (see * %G_FILE_DISK_USAGE_APPARENT_SIZE). * * The frequency of the updates is implementation defined, but is * ideally about once every 200ms. * * The last progress callback may or may not be equal to the final * result. Always check the async result to get the final value. * * Since: 2.38 **/ typedef void (* GFileMeasureProgressCallback) (gboolean reporting, guint64 current_size, guint64 num_dirs, guint64 num_files, gpointer user_data); /** * GIOSchedulerJobFunc: * @job: a #GIOSchedulerJob. * @cancellable: optional #GCancellable object, %NULL to ignore. * @user_data: the data to pass to callback function * * I/O Job function. * * Long-running jobs should periodically check the @cancellable * to see if they have been cancelled. * * Returns: %TRUE if this function should be called again to * complete the job, %FALSE if the job is complete (or cancelled) **/ typedef gboolean (*GIOSchedulerJobFunc) (GIOSchedulerJob *job, GCancellable *cancellable, gpointer user_data); /** * GSimpleAsyncThreadFunc: * @res: a #GSimpleAsyncResult. * @object: a #GObject. * @cancellable: optional #GCancellable object, %NULL to ignore. * * Simple thread function that runs an asynchronous operation and * checks for cancellation. **/ typedef void (*GSimpleAsyncThreadFunc) (GSimpleAsyncResult *res, GObject *object, GCancellable *cancellable); /** * GSocketSourceFunc: * @socket: the #GSocket * @condition: the current condition at the source fired. * @user_data: data passed in by the user. * * This is the function type of the callback used for the #GSource * returned by g_socket_create_source(). * * Returns: it should return %FALSE if the source should be removed. * * Since: 2.22 */ typedef gboolean (*GSocketSourceFunc) (GSocket *socket, GIOCondition condition, gpointer user_data); /** * GDatagramBasedSourceFunc: * @datagram_based: the #GDatagramBased * @condition: the current condition at the source fired * @user_data: data passed in by the user * * This is the function type of the callback used for the #GSource * returned by g_datagram_based_create_source(). * * Returns: %G_SOURCE_REMOVE if the source should be removed, * %G_SOURCE_CONTINUE otherwise * * Since: 2.48 */ typedef gboolean (*GDatagramBasedSourceFunc) (GDatagramBased *datagram_based, GIOCondition condition, gpointer user_data); /** * GInputVector: * @buffer: Pointer to a buffer where data will be written. * @size: the available size in @buffer. * * Structure used for scatter/gather data input. * You generally pass in an array of #GInputVectors * and the operation will store the read data starting in the * first buffer, switching to the next as needed. * * Since: 2.22 */ typedef struct _GInputVector GInputVector; struct _GInputVector { gpointer buffer; gsize size; }; /** * GInputMessage: * @address: (optional) (out) (transfer full): return location * for a #GSocketAddress, or %NULL * @vectors: (array length=num_vectors) (out): pointer to an * array of input vectors * @num_vectors: the number of input vectors pointed to by @vectors * @bytes_received: (out): will be set to the number of bytes that have been * received * @flags: (out): collection of #GSocketMsgFlags for the received message, * outputted by the call * @control_messages: (array length=num_control_messages) (optional) * (out) (transfer full): return location for a * caller-allocated array of #GSocketControlMessages, or %NULL * @num_control_messages: (out) (optional): return location for the number of * elements in @control_messages * * Structure used for scatter/gather data input when receiving multiple * messages or packets in one go. You generally pass in an array of empty * #GInputVectors and the operation will use all the buffers as if they * were one buffer, and will set @bytes_received to the total number of bytes * received across all #GInputVectors. * * This structure closely mirrors `struct mmsghdr` and `struct msghdr` from * the POSIX sockets API (see `man 2 recvmmsg`). * * If @address is non-%NULL then it is set to the source address the message * was received from, and the caller must free it afterwards. * * If @control_messages is non-%NULL then it is set to an array of control * messages received with the message (if any), and the caller must free it * afterwards. @num_control_messages is set to the number of elements in * this array, which may be zero. * * Flags relevant to this message will be returned in @flags. For example, * `MSG_EOR` or `MSG_TRUNC`. * * Since: 2.48 */ typedef struct _GInputMessage GInputMessage; struct _GInputMessage { GSocketAddress **address; GInputVector *vectors; guint num_vectors; gsize bytes_received; gint flags; GSocketControlMessage ***control_messages; guint *num_control_messages; }; /** * GOutputVector: * @buffer: Pointer to a buffer of data to read. * @size: the size of @buffer. * * Structure used for scatter/gather data output. * You generally pass in an array of #GOutputVectors * and the operation will use all the buffers as if they were * one buffer. * * Since: 2.22 */ typedef struct _GOutputVector GOutputVector; struct _GOutputVector { gconstpointer buffer; gsize size; }; /** * GOutputMessage: * @address: (nullable): a #GSocketAddress, or %NULL * @vectors: pointer to an array of output vectors * @num_vectors: the number of output vectors pointed to by @vectors. * @bytes_sent: initialize to 0. Will be set to the number of bytes * that have been sent * @control_messages: (array length=num_control_messages) (nullable): a pointer * to an array of #GSocketControlMessages, or %NULL. * @num_control_messages: number of elements in @control_messages. * * Structure used for scatter/gather data output when sending multiple * messages or packets in one go. You generally pass in an array of * #GOutputVectors and the operation will use all the buffers as if they * were one buffer. * * If @address is %NULL then the message is sent to the default receiver * (as previously set by g_socket_connect()). * * Since: 2.44 */ typedef struct _GOutputMessage GOutputMessage; struct _GOutputMessage { GSocketAddress *address; GOutputVector *vectors; guint num_vectors; guint bytes_sent; GSocketControlMessage **control_messages; guint num_control_messages; }; typedef struct _GCredentials GCredentials; typedef struct _GUnixCredentialsMessage GUnixCredentialsMessage; typedef struct _GUnixFDList GUnixFDList; typedef struct _GDBusMessage GDBusMessage; typedef struct _GDBusConnection GDBusConnection; typedef struct _GDBusProxy GDBusProxy; typedef struct _GDBusMethodInvocation GDBusMethodInvocation; typedef struct _GDBusServer GDBusServer; typedef struct _GDBusAuthObserver GDBusAuthObserver; typedef struct _GDBusErrorEntry GDBusErrorEntry; typedef struct _GDBusInterfaceVTable GDBusInterfaceVTable; typedef struct _GDBusSubtreeVTable GDBusSubtreeVTable; typedef struct _GDBusAnnotationInfo GDBusAnnotationInfo; typedef struct _GDBusArgInfo GDBusArgInfo; typedef struct _GDBusMethodInfo GDBusMethodInfo; typedef struct _GDBusSignalInfo GDBusSignalInfo; typedef struct _GDBusPropertyInfo GDBusPropertyInfo; typedef struct _GDBusInterfaceInfo GDBusInterfaceInfo; typedef struct _GDBusNodeInfo GDBusNodeInfo; /** * GCancellableSourceFunc: * @cancellable: the #GCancellable * @user_data: data passed in by the user. * * This is the function type of the callback used for the #GSource * returned by g_cancellable_source_new(). * * Returns: it should return %FALSE if the source should be removed. * * Since: 2.28 */ typedef gboolean (*GCancellableSourceFunc) (GCancellable *cancellable, gpointer user_data); /** * GPollableSourceFunc: * @pollable_stream: the #GPollableInputStream or #GPollableOutputStream * @user_data: data passed in by the user. * * This is the function type of the callback used for the #GSource * returned by g_pollable_input_stream_create_source() and * g_pollable_output_stream_create_source(). * * Returns: it should return %FALSE if the source should be removed. * * Since: 2.28 */ typedef gboolean (*GPollableSourceFunc) (GObject *pollable_stream, gpointer user_data); typedef struct _GDBusInterface GDBusInterface; /* Dummy typedef */ typedef struct _GDBusInterfaceSkeleton GDBusInterfaceSkeleton; typedef struct _GDBusObject GDBusObject; /* Dummy typedef */ typedef struct _GDBusObjectSkeleton GDBusObjectSkeleton; typedef struct _GDBusObjectProxy GDBusObjectProxy; typedef struct _GDBusObjectManager GDBusObjectManager; /* Dummy typedef */ typedef struct _GDBusObjectManagerClient GDBusObjectManagerClient; typedef struct _GDBusObjectManagerServer GDBusObjectManagerServer; /** * GDBusProxyTypeFunc: * @manager: A #GDBusObjectManagerClient. * @object_path: The object path of the remote object. * @interface_name: (nullable): The interface name of the remote object or %NULL if a #GDBusObjectProxy #GType is requested. * @user_data: User data. * * Function signature for a function used to determine the #GType to * use for an interface proxy (if @interface_name is not %NULL) or * object proxy (if @interface_name is %NULL). * * This function is called in the * [thread-default main loop][g-main-context-push-thread-default] * that @manager was constructed in. * * Returns: A #GType to use for the remote object. The returned type * must be a #GDBusProxy or #GDBusObjectProxy -derived * type. * * Since: 2.30 */ typedef GType (*GDBusProxyTypeFunc) (GDBusObjectManagerClient *manager, const gchar *object_path, const gchar *interface_name, gpointer user_data); typedef struct _GTestDBus GTestDBus; /** * GSubprocess: * * A child process. * * Since: 2.40 */ typedef struct _GSubprocess GSubprocess; /** * GSubprocessLauncher: * * Options for launching a child process. * * Since: 2.40 */ typedef struct _GSubprocessLauncher GSubprocessLauncher; G_END_DECLS #endif /* __GIO_TYPES_H__ */
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
gaction.h | File | 4.5 KB | 0644 |
|
gactiongroup.h | File | 8.95 KB | 0644 |
|
gactiongroupexporter.h | File | 1.73 KB | 0644 |
|
gactionmap.h | File | 3.9 KB | 0644 |
|
gappinfo.h | File | 16.99 KB | 0644 |
|
gapplication.h | File | 14.12 KB | 0644 |
|
gapplicationcommandline.h | File | 6.02 KB | 0644 |
|
gasyncinitable.h | File | 4.25 KB | 0644 |
|
gasyncresult.h | File | 2.75 KB | 0644 |
|
gbufferedinputstream.h | File | 5.11 KB | 0644 |
|
gbufferedoutputstream.h | File | 3.26 KB | 0644 |
|
gbytesicon.h | File | 1.61 KB | 0644 |
|
gcancellable.h | File | 3.96 KB | 0644 |
|
gcharsetconverter.h | File | 2.46 KB | 0644 |
|
gcontenttype.h | File | 2.65 KB | 0644 |
|
gconverter.h | File | 2.82 KB | 0644 |
|
gconverterinputstream.h | File | 2.94 KB | 0644 |
|
gconverteroutputstream.h | File | 2.98 KB | 0644 |
|
gcredentials.h | File | 3.33 KB | 0644 |
|
gdatagrambased.h | File | 6.5 KB | 0644 |
|
gdatainputstream.h | File | 10.88 KB | 0644 |
|
gdataoutputstream.h | File | 4.81 KB | 0644 |
|
gdbusactiongroup.h | File | 2.67 KB | 0644 |
|
gdbusaddress.h | File | 2.61 KB | 0644 |
|
gdbusauthobserver.h | File | 2.08 KB | 0644 |
|
gdbusconnection.h | File | 37.86 KB | 0644 |
|
gdbuserror.h | File | 4.21 KB | 0644 |
|
gdbusinterface.h | File | 3 KB | 0644 |
|
gdbusinterfaceskeleton.h | File | 5.91 KB | 0644 |
|
gdbusintrospection.h | File | 12.1 KB | 0644 |
|
gdbusmenumodel.h | File | 1.69 KB | 0644 |
|
gdbusmessage.h | File | 11.12 KB | 0644 |
|
gdbusmethodinvocation.h | File | 5.67 KB | 0644 |
|
gdbusnameowning.h | File | 4.76 KB | 0644 |
|
gdbusnamewatching.h | File | 4.41 KB | 0644 |
|
gdbusobject.h | File | 2.87 KB | 0644 |
|
gdbusobjectmanager.h | File | 4.37 KB | 0644 |
|
gdbusobjectmanagerclient.h | File | 9.57 KB | 0644 |
|
gdbusobjectmanagerserver.h | File | 4.02 KB | 0644 |
|
gdbusobjectproxy.h | File | 2.57 KB | 0644 |
|
gdbusobjectskeleton.h | File | 3.86 KB | 0644 |
|
gdbusproxy.h | File | 11.8 KB | 0644 |
|
gdbusserver.h | File | 2.47 KB | 0644 |
|
gdbusutils.h | File | 1.74 KB | 0644 |
|
gdrive.h | File | 13.96 KB | 0644 |
|
gdtlsclientconnection.h | File | 3.12 KB | 0644 |
|
gdtlsconnection.h | File | 10.44 KB | 0644 |
|
gdtlsserverconnection.h | File | 2.39 KB | 0644 |
|
gemblem.h | File | 2.1 KB | 0644 |
|
gemblemedicon.h | File | 2.72 KB | 0644 |
|
gfile.h | File | 77.08 KB | 0644 |
|
gfileattribute.h | File | 2.74 KB | 0644 |
|
gfileenumerator.h | File | 6.24 KB | 0644 |
|
gfileicon.h | File | 1.91 KB | 0644 |
|
gfileinfo.h | File | 41.46 KB | 0644 |
|
gfileinputstream.h | File | 4.55 KB | 0644 |
|
gfileiostream.h | File | 4.92 KB | 0644 |
|
gfilemonitor.h | File | 3.2 KB | 0644 |
|
gfilenamecompleter.h | File | 3.02 KB | 0644 |
|
gfileoutputstream.h | File | 5.21 KB | 0644 |
|
gfilterinputstream.h | File | 2.77 KB | 0644 |
|
gfilteroutputstream.h | File | 2.81 KB | 0644 |
|
gicon.h | File | 3.35 KB | 0644 |
|
ginetaddress.h | File | 4.42 KB | 0644 |
|
ginetaddressmask.h | File | 3.05 KB | 0644 |
|
ginetsocketaddress.h | File | 3.04 KB | 0644 |
|
ginitable.h | File | 2.84 KB | 0644 |
|
ginputstream.h | File | 8.97 KB | 0644 |
|
gio-autocleanups.h | File | 8.64 KB | 0644 |
|
gio.h | File | 5.45 KB | 0644 |
|
gioenums.h | File | 70.63 KB | 0644 |
|
gioenumtypes.h | File | 11.71 KB | 0644 |
|
gioerror.h | File | 1.52 KB | 0644 |
|
giomodule.h | File | 7.88 KB | 0644 |
|
gioscheduler.h | File | 1.95 KB | 0644 |
|
giostream.h | File | 4.75 KB | 0644 |
|
giotypes.h | File | 24.11 KB | 0644 |
|
glistmodel.h | File | 2.52 KB | 0644 |
|
gliststore.h | File | 3.39 KB | 0644 |
|
gloadableicon.h | File | 3.58 KB | 0644 |
|
gmemoryinputstream.h | File | 3.35 KB | 0644 |
|
gmemoryoutputstream.h | File | 3.84 KB | 0644 |
|
gmenu.h | File | 8.73 KB | 0644 |
|
gmenuexporter.h | File | 1.57 KB | 0644 |
|
gmenumodel.h | File | 14 KB | 0644 |
|
gmount.h | File | 15.42 KB | 0644 |
|
gmountoperation.h | File | 5.35 KB | 0644 |
|
gnativevolumemonitor.h | File | 2.22 KB | 0644 |
|
gnetworkaddress.h | File | 2.89 KB | 0644 |
|
gnetworking.h | File | 1.95 KB | 0644 |
|
gnetworkmonitor.h | File | 4.14 KB | 0644 |
|
gnetworkservice.h | File | 2.69 KB | 0644 |
|
gnotification.h | File | 4.78 KB | 0644 |
|
goutputstream.h | File | 12.25 KB | 0644 |
|
gpermission.h | File | 5.72 KB | 0644 |
|
gpollableinputstream.h | File | 3.74 KB | 0644 |
|
gpollableoutputstream.h | File | 3.81 KB | 0644 |
|
gpollableutils.h | File | 2.08 KB | 0644 |
|
gpropertyaction.h | File | 1.95 KB | 0644 |
|
gproxy.h | File | 3.97 KB | 0644 |
|
gproxyaddress.h | File | 3.09 KB | 0644 |
|
gproxyaddressenumerator.h | File | 2.74 KB | 0644 |
|
gproxyresolver.h | File | 3.31 KB | 0644 |
|
gremoteactiongroup.h | File | 3.55 KB | 0644 |
|
gresolver.h | File | 8.61 KB | 0644 |
|
gresource.h | File | 4.54 KB | 0644 |
|
gseekable.h | File | 3.2 KB | 0644 |
|
gsettings.h | File | 20.65 KB | 0644 |
|
gsettingsbackend.h | File | 8.31 KB | 0644 |
|
gsettingsschema.h | File | 5.79 KB | 0644 |
|
gsimpleaction.h | File | 2.85 KB | 0644 |
|
gsimpleactiongroup.h | File | 4.25 KB | 0644 |
|
gsimpleasyncresult.h | File | 7.63 KB | 0644 |
|
gsimpleiostream.h | File | 1.68 KB | 0644 |
|
gsimplepermission.h | File | 1.65 KB | 0644 |
|
gsimpleproxyresolver.h | File | 3.45 KB | 0644 |
|
gsocket.h | File | 15.25 KB | 0644 |
|
gsocketaddress.h | File | 3.01 KB | 0644 |
|
gsocketaddressenumerator.h | File | 3.45 KB | 0644 |
|
gsocketclient.h | File | 10.95 KB | 0644 |
|
gsocketconnectable.h | File | 2.82 KB | 0644 |
|
gsocketconnection.h | File | 4.94 KB | 0644 |
|
gsocketcontrolmessage.h | File | 4.77 KB | 0644 |
|
gsocketlistener.h | File | 7.5 KB | 0644 |
|
gsocketservice.h | File | 3.54 KB | 0644 |
|
gsrvtarget.h | File | 1.89 KB | 0644 |
|
gsubprocess.h | File | 8.4 KB | 0644 |
|
gsubprocesslauncher.h | File | 6.25 KB | 0644 |
|
gtask.h | File | 7.43 KB | 0644 |
|
gtcpconnection.h | File | 2.89 KB | 0644 |
|
gtcpwrapperconnection.h | File | 2.9 KB | 0644 |
|
gtestdbus.h | File | 2.25 KB | 0644 |
|
gthemedicon.h | File | 2.58 KB | 0644 |
|
gthreadedsocketservice.h | File | 3.58 KB | 0644 |
|
gtlsbackend.h | File | 4.3 KB | 0644 |
|
gtlscertificate.h | File | 3.42 KB | 0644 |
|
gtlsclientconnection.h | File | 3.6 KB | 0644 |
|
gtlsconnection.h | File | 6.02 KB | 0644 |
|
gtlsdatabase.h | File | 16.87 KB | 0644 |
|
gtlsfiledatabase.h | File | 1.86 KB | 0644 |
|
gtlsinteraction.h | File | 8.14 KB | 0644 |
|
gtlspassword.h | File | 4.71 KB | 0644 |
|
gtlsserverconnection.h | File | 2.29 KB | 0644 |
|
gvfs.h | File | 6.46 KB | 0644 |
|
gvolume.h | File | 11.37 KB | 0644 |
|
gvolumemonitor.h | File | 5.86 KB | 0644 |
|
gzlibcompressor.h | File | 2.29 KB | 0644 |
|
gzlibdecompressor.h | File | 2.16 KB | 0644 |
|