/usr/include/libmypaint/mypaint-glib-compat.h is in libmypaint-dev 1.3.0-2.
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 | #ifndef MYPAINTGLIBCOMPAT_H
#define MYPAINTGLIBCOMPAT_H
#include <mypaint-config.h>
#ifndef __G_LIB_H__
/* From $INCLUDEPATH/glib-2.0/glib/gmacros.h */
#ifdef __cplusplus
# define G_BEGIN_DECLS extern "C" {
# define G_END_DECLS }
#else
# define G_BEGIN_DECLS
# define G_END_DECLS
#endif
#define FALSE (0)
#define TRUE (!FALSE)
typedef void * gpointer;
/* From $INCLUDEPATH/glib-2.0/glib/gtypes.h */
typedef char gchar;
typedef int gint;
typedef gint gboolean;
/* From $LIBPATH/glib-2.0/include/glibconfig.h */
typedef unsigned short guint16;
#endif // __G_LIB_H__
#endif // MYPAINTGLIBCOMPAT_H
|