2007-12-30 17:41:49 +01:00
|
|
|
/***************************************************************************
|
|
|
|
|
2009-08-17 12:41:51 +02:00
|
|
|
gbx_c_collection.h
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2011-03-21 01:04:10 +01:00
|
|
|
(c) 2000-2011 Benoît Minisini <gambas@users.sourceforge.net>
|
2007-12-30 17:41:49 +01: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
|
2009-08-17 12:41:51 +02:00
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
2007-12-30 17:41:49 +01:00
|
|
|
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
|
2011-06-03 02:51:09 +02:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA.
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __GBX_C_COLLECTION_H
|
|
|
|
#define __GBX_C_COLLECTION_H
|
|
|
|
|
|
|
|
#include "gambas.h"
|
|
|
|
|
|
|
|
#include "gb_hash.h"
|
|
|
|
#include "gbx_object.h"
|
|
|
|
|
|
|
|
typedef
|
|
|
|
struct {
|
|
|
|
int sort;
|
|
|
|
void *data;
|
|
|
|
}
|
|
|
|
CCOL_DESC;
|
|
|
|
|
|
|
|
typedef
|
|
|
|
struct {
|
|
|
|
OBJECT object;
|
|
|
|
HASH_TABLE *hash_table;
|
|
|
|
HASH_NODE *last;
|
2009-06-17 16:13:50 +02:00
|
|
|
short mode;
|
|
|
|
char locked;
|
2007-12-30 17:41:49 +01:00
|
|
|
}
|
|
|
|
CCOLLECTION;
|
|
|
|
|
|
|
|
#ifndef __GBX_C_COLLECTION_C
|
|
|
|
|
|
|
|
extern GB_DESC NATIVE_Collection[];
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define THIS ((CCOLLECTION *)_object)
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2010-09-27 21:34:27 +02:00
|
|
|
#define CCOLLECTION_get_count(_col) HASH_TABLE_size((_col)->hash_table)
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
/*PUBLIC void *CCOLLECTION_new(TYPE type);*/
|
|
|
|
/*
|
2009-07-08 21:57:50 +02:00
|
|
|
void *CCOLLECTION_get_key(CCOLLECTION *col, char *key, int len);
|
|
|
|
void *CCOLLECTION_add_key(CCOLLECTION *col, char *key, int len);
|
|
|
|
void CCOLLECTION_remove_key(CCOLLECTION *col, char *key, int len);
|
2007-12-30 17:41:49 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#endif
|