2012-08-18 13:07:14 +02:00
|
|
|
/*
|
|
|
|
* c_circular.h
|
|
|
|
*
|
2013-08-20 00:48:29 +02:00
|
|
|
* Copyright (C) 2012/3 Tobias Boege <tobias@gambas-buch.de>
|
2012-08-18 13:07:14 +02:00
|
|
|
*
|
|
|
|
* 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, 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 Street, Fifth Floor, Boston,
|
|
|
|
* MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __C_CIRCULAR_H
|
|
|
|
#define __C_CIRCULAR_H
|
|
|
|
|
2012-08-18 23:46:25 +02:00
|
|
|
#include "gambas.h"
|
2012-08-18 13:07:14 +02:00
|
|
|
|
|
|
|
extern GB_INTERFACE GB;
|
|
|
|
|
|
|
|
#ifndef __C_CIRCULAR_C
|
2013-08-09 20:31:20 +02:00
|
|
|
extern GB_DESC CCircular[];
|
2012-08-18 13:07:14 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* !__C_CIRCULAR_H */
|