2010-10-16 20:48:38 +00:00
|
|
|
[CCode (prefix = "", lower_case_cprefix = "", cheader_filename = "config.h")]
|
|
|
|
namespace Config
|
|
|
|
{
|
|
|
|
/* Package information */
|
|
|
|
public const string PACKAGE_NAME;
|
|
|
|
public const string PACKAGE_STRING;
|
|
|
|
public const string PACKAGE_VERSION;
|
|
|
|
|
|
|
|
/* Gettext package */
|
|
|
|
public const string GETTEXT_PACKAGE;
|
|
|
|
|
|
|
|
/* Configured paths - these variables are not present in config.h, they are
|
|
|
|
* passed to underlying C code as cmd line macros. */
|
2013-09-02 20:25:09 +00:00
|
|
|
public const string G_LOG_DOMAIN;
|
2010-10-16 20:48:38 +00:00
|
|
|
public const string LOCALEDIR; /* /usr/local/share/locale */
|
|
|
|
public const string PKGDATADIR; /* /usr/local/share/gst-mi */
|
|
|
|
public const string PKGLIBDIR; /* /usr/local/lib/mediainfo/gst-mi */
|
|
|
|
}
|
|
|
|
|