/* libgcab-1.0.vapi generated by vapigen, do not modify. */ [CCode (cprefix = "GCab", gir_namespace = "GCab", gir_version = "1.0", lower_case_cprefix = "gcab_")] namespace GCab { [CCode (cheader_filename = "libgcab.h", type_id = "gcab_cabinet_get_type ()")] public class Cabinet : GLib.Object { [CCode (has_construct_function = false)] public Cabinet (); [Version (since = "1.6")] public void add_allowed_compression (GCab.Compression compression); public bool add_folder (GCab.Folder folder) throws GLib.Error; public bool extract (GLib.File? path, [CCode (delegate_target_pos = 3.5)] GCab.FileCallback? file_callback, [CCode (delegate_target_pos = 3.5)] GLib.FileProgressCallback? progress_callback, GLib.Cancellable? cancellable = null) throws GLib.Error; public bool extract_simple (GLib.File path, [CCode (delegate_target_pos = 2.5)] GCab.FileCallback? file_callback, GLib.Cancellable? cancellable = null) throws GLib.Error; public unowned GLib.GenericArray get_folders (); [Version (since = "0.5")] public unowned GLib.ByteArray get_signature (GLib.Cancellable? cancellable = null) throws GLib.Error; [Version (since = "1.0")] public uint32 get_size (); public bool load (GLib.InputStream stream, GLib.Cancellable? cancellable = null) throws GLib.Error; public bool write (GLib.OutputStream stream, [CCode (delegate_target_pos = 3.5)] GCab.FileCallback? file_callback, [CCode (delegate_target_pos = 3.5)] GLib.FileProgressCallback? progress_callback, GLib.Cancellable? cancellable = null) throws GLib.Error; public bool write_simple (GLib.OutputStream stream, [CCode (delegate_target_pos = 2.5)] GCab.FileCallback? file_callback, GLib.Cancellable? cancellable = null) throws GLib.Error; [NoAccessorMethod] public GLib.ByteArray reserved { owned get; set; } [NoAccessorMethod] public GLib.ByteArray signature { owned get; set; } } [CCode (cheader_filename = "libgcab.h", type_id = "gcab_file_get_type ()")] public class File : GLib.Object { [CCode (has_construct_function = false)] protected File (); [Version (since = "0.6")] public uint32 get_attributes (); [Version (since = "1.0")] public unowned GLib.Bytes get_bytes (); [Version (since = "0.6")] public bool get_date (GLib.TimeVal result); [Version (since = "1.4")] public GLib.DateTime get_date_time (); public unowned string? get_extract_name (); public unowned GLib.File get_file (); public unowned string get_name (); [Version (since = "0.6")] public uint32 get_size (); [Version (since = "1.0")] public void set_attributes (uint32 attr); [Version (since = "1.5")] public void set_bytes (GLib.Bytes bytes); [Version (since = "1.0")] public void set_date (GLib.TimeVal tv); [Version (since = "1.4")] public void set_date_time (GLib.DateTime dt); public void set_extract_name (string? name); [CCode (has_construct_function = false)] [Version (since = "1.0")] public File.with_bytes (string name, GLib.Bytes bytes); [CCode (has_construct_function = false)] public File.with_file (string name, GLib.File file); public GLib.Bytes bytes { get; set; } [NoAccessorMethod] public GLib.File file { owned get; set; } [NoAccessorMethod] public string name { owned get; set; } } [CCode (cheader_filename = "libgcab.h", type_id = "gcab_folder_get_type ()")] public class Folder : GLib.Object { [CCode (has_construct_function = false)] public Folder (int comptype); public bool add_file (GCab.File cabfile, bool recurse, GLib.Cancellable? cancellable = null) throws GLib.Error; [Version (since = "1.0")] public int get_comptype (); public unowned GCab.File get_file_by_name (string name); public GLib.SList get_files (); public uint get_nfiles (); [NoAccessorMethod] public GCab.Compression compression { get; } public int comptype { get; construct; } [NoAccessorMethod] public GLib.ByteArray reserved { owned get; set; } } [CCode (cheader_filename = "libgcab.h", cprefix = "GCAB_COMPRESSION_", type_id = "gcab_compression_get_type ()")] public enum Compression { NONE, MSZIP, QUANTUM, LZX, MASK } [CCode (cheader_filename = "libgcab.h", cprefix = "GCAB_FILE_ATTRIBUTE_", type_id = "gcab_file_attribute_get_type ()")] public enum FileAttribute { RDONLY, HIDDEN, SYSTEM, ARCH, EXEC, NAME_IS_UTF } [CCode (cheader_filename = "libgcab.h", cprefix = "GCAB_ERROR_", has_type_id = false)] public errordomain Error { FORMAT, FAILED, NOT_SUPPORTED, INVALID_DATA; public static GLib.Quark quark (); } [CCode (cheader_filename = "libgcab.h", instance_pos = 1.9)] public delegate bool FileCallback (GCab.File file); }