diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-07-26 11:12:25 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-07-26 11:12:25 +0000 |
commit | a101b38dea6890fa1dbf5b8560665826b69fa4ae (patch) | |
tree | 2615e691684c22951ebb881d6a5009257aad2f97 /src/xine-engine/configfile.h | |
parent | 4042284ccba79fe453dfca7b4d45edba31d36d48 (diff) | |
download | xine-lib-a101b38dea6890fa1dbf5b8560665826b69fa4ae.tar.gz xine-lib-a101b38dea6890fa1dbf5b8560665826b69fa4ae.tar.bz2 |
Updated doxy sections in xine.h.tmpl.in. Added man3. Removed french man page. Added API doc in html. Add new rpm package (doc). Fixes some little bugs in
proto decl, etc...
CVS patchset: 350
CVS date: 2001/07/26 11:12:25
Diffstat (limited to 'src/xine-engine/configfile.h')
-rw-r--r-- | src/xine-engine/configfile.h | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/src/xine-engine/configfile.h b/src/xine-engine/configfile.h index fc1b3c829..eb332afea 100644 --- a/src/xine-engine/configfile.h +++ b/src/xine-engine/configfile.h @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: configfile.h,v 1.2 2001/07/18 21:38:17 f1rmb Exp $ + * $Id: configfile.h,v 1.3 2001/07/26 11:12:26 f1rmb Exp $ * * config file management * @@ -32,9 +32,18 @@ extern "C" { #include <inttypes.h> -typedef struct config_values_s config_values_t; -typedef struct cfg_data_s cfg_data_t; +typedef struct cfg_entry_s { + struct cfg_entry_s *next; + char *key; + char *value; +} cfg_entry_t; + +typedef struct { + cfg_entry_t *gConfig; + cfg_entry_t *gConfigLast; +} cfg_data_t; +typedef struct config_values_s config_values_t; struct config_values_s { /* * lookup config values @@ -87,6 +96,10 @@ config_values_t *config_file_init (char *filename); /* * $Log: configfile.h,v $ + * Revision 1.3 2001/07/26 11:12:26 f1rmb + * Updated doxy sections in xine.h.tmpl.in. Added man3. Removed french man page. Added API doc in html. Add new rpm package (doc). Fixes some little bugs in + * proto decl, etc... + * * Revision 1.2 2001/07/18 21:38:17 f1rmb * Split alsa drivers, more checks about versions. Made xine lib c++ compliant. * @@ -104,7 +117,3 @@ config_values_t *config_file_init (char *filename); * started touching demuxers * */ - - - - |