From 51175189c6d7313a3b84019e39496f957c4e6164 Mon Sep 17 00:00:00 2001 From: Stefano Karapetsas Date: Sun, 11 Dec 2011 12:55:19 +0100 Subject: moved from Mate-Extra --- src/gpm-point-obj.h | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 src/gpm-point-obj.h (limited to 'src/gpm-point-obj.h') diff --git a/src/gpm-point-obj.h b/src/gpm-point-obj.h new file mode 100644 index 0000000..a37e2a6 --- /dev/null +++ b/src/gpm-point-obj.h @@ -0,0 +1,42 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- + * + * Copyright (C) 2008 Richard Hughes + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + */ + +#ifndef __GPM_POINT_OBJ_H__ +#define __GPM_POINT_OBJ_H__ + +#include + +G_BEGIN_DECLS + +typedef struct +{ + gfloat x; + gfloat y; + guint32 color; +} GpmPointObj; + +GpmPointObj *gpm_point_obj_new (void); +GpmPointObj *gpm_point_obj_copy (const GpmPointObj *cobj); +void gpm_point_obj_free (GpmPointObj *obj); + +G_END_DECLS + +#endif /* __GPM_POINT_OBJ_H__ */ + -- cgit v1.2.1