Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00028
00029
00030
00031
00032 #ifndef __REMIX_META_H__
00033 #define __REMIX_META_H__
00034
00035 char * remix_meta_text_get_identifier (RemixEnv * env, RemixMetaText * mt);
00036 char * remix_meta_text_set_identifier (RemixEnv * env, RemixMetaText * mt,
00037 char * identifier);
00038 char * remix_meta_text_get_category (RemixEnv * env, RemixMetaText * mt);
00039 char * remix_meta_text_set_category (RemixEnv * env, RemixMetaText * mt,
00040 char * category);
00041 char * remix_meta_text_get_description (RemixEnv * env, RemixMetaText * mt);
00042 char * remix_meta_text_set_description (RemixEnv * env, RemixMetaText * mt,
00043 char * description);
00044 char * remix_meta_text_get_copyright (RemixEnv * env, RemixMetaText * mt);
00045 char * remix_meta_text_set_copyright (RemixEnv * env, RemixMetaText * mt,
00046 char * copyright);
00047 char * remix_meta_text_get_url (RemixEnv * env, RemixMetaText * mt);
00048 char * remix_meta_text_set_url (RemixEnv * env, RemixMetaText * mt,
00049 char * url);
00050 CDList * remix_meta_text_get_authors (RemixEnv * env, RemixMetaText * mt);
00051 void remix_meta_text_add_author (RemixEnv * env, RemixMetaText * mt,
00052 char * name, char * email);
00053
00054 #if defined(__cplusplus)
00055 }
00056 #endif
00057
00058 #endif