/usr/include/complearn-1.0/complearn/complearn-rcgzip.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 | /* 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_RCGZIP_H__
#define __COMPLEARN_RCGZIP_H__
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/*
* Type checking and casting macros
*/
#define COMPLEARN_TYPE_RCGZIP (complearn_rcgzip_get_type())
#define COMPLEARN_RCGZIP(obj) G_TYPE_CHECK_INSTANCE_CAST((obj), complearn_rcgzip_get_type(), CompLearnRCGZip)
#define COMPLEARN_RCGZIP_CONST(obj) G_TYPE_CHECK_INSTANCE_CAST((obj), complearn_rcgzip_get_type(), CompLearnRCGZip const)
#define COMPLEARN_RCGZIP_CLASS(klass) G_TYPE_CHECK_CLASS_CAST((klass), complearn_rcgzip_get_type(), CompLearnRCGZipClass)
#define COMPLEARN_IS_RCGZIP(obj) G_TYPE_CHECK_INSTANCE_TYPE((obj), complearn_rcgzip_get_type ())
#define COMPLEARN_RCGZIP_GET_CLASS(obj) G_TYPE_INSTANCE_GET_CLASS((obj), complearn_rcgzip_get_type(), CompLearnRCGZipClass)
/*
* Main object structure
*/
#ifndef __TYPEDEF_COMPLEARN_RCGZIP__
#define __TYPEDEF_COMPLEARN_RCGZIP__
typedef struct _CompLearnRCGZip CompLearnRCGZip;
#endif
struct _CompLearnRCGZip {
CompLearnExternalCompressor __parent__;
};
/*
* Class definition
*/
typedef struct _CompLearnRCGZipClass CompLearnRCGZipClass;
struct _CompLearnRCGZipClass {
CompLearnExternalCompressorClass __parent__;
};
/*
* Public methods
*/
GType complearn_rcgzip_get_type (void);
GObject * complearn_rcgzip_new (void);
guint64 complearn_rcgzip_window_size (CompLearnRealCompressor * rc);
GString * complearn_rcgzip_canonical_extension (CompLearnRealCompressor * rc);
CompLearnRealCompressor * complearn_rcgzip_clone (CompLearnRealCompressor * rc);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif
|