/* gphoto2-list.h: Lists of files, folders, cameras, etc. * * Copyright (C) 2001 Scott Fritzinger * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #ifndef __GPHOTO2_LIST_H__ #define __GPHOTO2_LIST_H__ #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ #define MAX_ENTRIES 1024 struct _CameraList { int count; struct { char name [128]; char value [128]; } entry [MAX_ENTRIES]; int ref_count; }; typedef struct _CameraList CameraList; int gp_list_new (CameraList **list); int gp_list_ref (CameraList *list); int gp_list_unref (CameraList *list); int gp_list_free (CameraList *list); int gp_list_count (CameraList *list); int gp_list_append (CameraList *list, const char *name, const char *value); int gp_list_reset (CameraList *list); int gp_list_sort (CameraList *list); int gp_list_get_name (CameraList *list, int index, const char **name); int gp_list_get_value (CameraList *list, int index, const char **value); int gp_list_set_name (CameraList *list, int index, const char *name); int gp_list_set_value (CameraList *list, int index, const char *value); int gp_list_populate (CameraList *list, const char *format, int count); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* __GPHOTO2_LIST_H__ */