xarray.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:3k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*************************************************************************
  2.  * xarray.h: Mutable (dynamically growable) array (header file)
  3.  *************************************************************************
  4.  * Copyright (C) 2004 Commonwealth Scientific and Industrial Research
  5.  *                    Organisation (CSIRO) Australia
  6.  * Copyright (C) 2004 the VideoLAN team
  7.  *
  8.  * $Id: 27605384866e35a0b1fae69f9dfdb9db2591063b $
  9.  *
  10.  * Authors: Andre Pang <Andre.Pang@csiro.au>
  11.  *
  12.  * This program is free software; you can redistribute it and/or modify
  13.  * it under the terms of the GNU General Public License as published by
  14.  * the Free Software Foundation; either version 2 of the License, or
  15.  * (at your option) any later version.
  16.  *
  17.  * This program is distributed in the hope that it will be useful,
  18.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.  * GNU General Public License for more details.
  21.  *
  22.  * You should have received a copy of the GNU General Public License
  23.  * along with this program; if not, write to the Free Software
  24.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  25.  ************************************************************************/
  26. #ifndef __XARRAY_H__
  27. #define __XARRAY_H__
  28. #define XARRAY_DEFAULT_SIZE 69
  29. /* Error codes */
  30. enum xarray_errors
  31. {
  32.     XARRAY_SUCCESS, XARRAY_ENULLPOINTER, XARRAY_ENEGATIVEINDEX,
  33.     XARRAY_EINDEXTOOLARGE, XARRAY_ENOMEM, XARRAY_EEMPTYARRAY,
  34.     XARRAY_ECOUNTOUTOFBOUNDS
  35. };
  36. typedef struct
  37. {
  38.     void **array;
  39.     int last_valid_element;
  40.     unsigned int size;
  41.     unsigned int last_error;
  42. }
  43. XArray;
  44. /* Mutable methods */
  45. int      xarray_AddObject (XArray *xarray, void *object);
  46. int      xarray_InsertObject (XArray *xarray, void *object,
  47.                                       unsigned int at_index);
  48. int      xarray_RemoveLastObject (XArray *xarray);
  49. int      xarray_RemoveObject (XArray *xarray, unsigned int at_index);
  50. int      xarray_RemoveObjects (XArray *xarray, unsigned int at_index,
  51.                                        int count);
  52. int      xarray_RemoveObjectsAfter (XArray *xarray, unsigned int index);
  53. int      xarray_ReplaceObject (XArray *xarray, unsigned int index,
  54.                                        void *new_object);
  55. /* Immutable methods */
  56. XArray * xarray_New ();
  57. int      xarray_ObjectAtIndex (XArray *xarray, unsigned int index,
  58.                                        void **out_object);
  59. int      xarray_Count (XArray *xarray, unsigned int *out_count);
  60. #endif /* __XARRAY_H__ */