Blame gtksourceview/gtksourcetypes-private.h

Packit a7d494
/*
Packit a7d494
 * gtksourcetypes-private.h
Packit a7d494
 * This file is part of GtkSourceView
Packit a7d494
 *
Packit a7d494
 * Copyright (C) 2012, 2013, 2016 - Sébastien Wilmet <swilmet@gnome.org>
Packit a7d494
 *
Packit a7d494
 * GtkSourceView is free software; you can redistribute it and/or
Packit a7d494
 * modify it under the terms of the GNU Lesser General Public
Packit a7d494
 * License as published by the Free Software Foundation; either
Packit a7d494
 * version 2.1 of the License, or (at your option) any later version.
Packit a7d494
 *
Packit a7d494
 * GtkSourceView is distributed in the hope that it will be useful,
Packit a7d494
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit a7d494
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit a7d494
 * Lesser General Public License for more details.
Packit a7d494
 *
Packit a7d494
 * You should have received a copy of the GNU Lesser General Public
Packit a7d494
 * License along with this library; if not, write to the Free Software
Packit a7d494
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
Packit a7d494
 */
Packit a7d494
Packit a7d494
#ifndef GTK_SOURCE_TYPES_PRIVATE_H
Packit a7d494
#define GTK_SOURCE_TYPES_PRIVATE_H
Packit a7d494
Packit a7d494
#include <glib.h>
Packit a7d494
Packit a7d494
G_BEGIN_DECLS
Packit a7d494
Packit a7d494
typedef struct _GtkSourceBufferInputStream	GtkSourceBufferInputStream;
Packit a7d494
typedef struct _GtkSourceBufferOutputStream	GtkSourceBufferOutputStream;
Packit a7d494
typedef struct _GtkSourceCompletionContainer	GtkSourceCompletionContainer;
Packit a7d494
typedef struct _GtkSourceCompletionModel	GtkSourceCompletionModel;
Packit a7d494
typedef struct _GtkSourceContextEngine		GtkSourceContextEngine;
Packit a7d494
typedef struct _GtkSourceEngine			GtkSourceEngine;
Packit a7d494
typedef struct _GtkSourceGutterRendererLines	GtkSourceGutterRendererLines;
Packit a7d494
typedef struct _GtkSourceGutterRendererMarks	GtkSourceGutterRendererMarks;
Packit a7d494
typedef struct _GtkSourceMarksSequence		GtkSourceMarksSequence;
Packit a7d494
typedef struct _GtkSourcePixbufHelper		GtkSourcePixbufHelper;
Packit a7d494
typedef struct _GtkSourceRegex			GtkSourceRegex;
Packit a7d494
typedef struct _GtkSourceUndoManagerDefault	GtkSourceUndoManagerDefault;
Packit a7d494
Packit a7d494
#ifdef _MSC_VER
Packit a7d494
/* For Visual Studio, we need to export the symbols used by the unit tests */
Packit a7d494
#define GTK_SOURCE_INTERNAL __declspec(dllexport)
Packit a7d494
#else
Packit a7d494
#define GTK_SOURCE_INTERNAL G_GNUC_INTERNAL
Packit a7d494
#endif
Packit a7d494
Packit a7d494
G_END_DECLS
Packit a7d494
Packit a7d494
#endif /* GTK_SOURCE_TYPES_PRIVATE_H */