/usr/include/complearn-1.0/complearn/complearn-rcbzip.h is in libcomplearn1-headers 1.1.7-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | /* Generated by GOB (v2.0.15) (do not edit directly) */
#include <glib.h>
#include <glib-object.h>
#include <glib/garray.h>
#include <libintl.h>
#include "real-compressor.h"
#include "complearn-real-compressor-adaptor.h"
#include "complearn-external-compressor.h"
#ifndef __COMPLEARN_RCBZIP_H__
#define __COMPLEARN_RCBZIP_H__
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/*
* Type checking and casting macros
*/
#define COMPLEARN_TYPE_RCBZIP (complearn_rcbzip_get_type())
#define COMPLEARN_RCBZIP(obj) G_TYPE_CHECK_INSTANCE_CAST((obj), complearn_rcbzip_get_type(), CompLearnRCBZip)
#define COMPLEARN_RCBZIP_CONST(obj) G_TYPE_CHECK_INSTANCE_CAST((obj), complearn_rcbzip_get_type(), CompLearnRCBZip const)
#define COMPLEARN_RCBZIP_CLASS(klass) G_TYPE_CHECK_CLASS_CAST((klass), complearn_rcbzip_get_type(), CompLearnRCBZipClass)
#define COMPLEARN_IS_RCBZIP(obj) G_TYPE_CHECK_INSTANCE_TYPE((obj), complearn_rcbzip_get_type ())
#define COMPLEARN_RCBZIP_GET_CLASS(obj) G_TYPE_INSTANCE_GET_CLASS((obj), complearn_rcbzip_get_type(), CompLearnRCBZipClass)
/*
* Main object structure
*/
#ifndef __TYPEDEF_COMPLEARN_RCBZIP__
#define __TYPEDEF_COMPLEARN_RCBZIP__
typedef struct _CompLearnRCBZip CompLearnRCBZip;
#endif
struct _CompLearnRCBZip {
CompLearnExternalCompressor __parent__;
};
/*
* Class definition
*/
typedef struct _CompLearnRCBZipClass CompLearnRCBZipClass;
struct _CompLearnRCBZipClass {
CompLearnExternalCompressorClass __parent__;
};
/*
* Public methods
*/
GType complearn_rcbzip_get_type (void);
GObject * complearn_rcbzip_new (void);
guint64 complearn_rcbzip_window_size (CompLearnRealCompressor * rc);
GString * complearn_rcbzip_canonical_extension (CompLearnRealCompressor * rc);
CompLearnRealCompressor * complearn_rcbzip_clone (CompLearnRealCompressor * rc);
gboolean complearn_rcbzip_is_threadsafe (CompLearnRealCompressor * rc);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif
|