00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef INF_H
00019 #define INF_H
00020
00021 #include "mod_musicindex.h"
00022 #include <string.h>
00023
00024 mu_ent *quicksort(mu_ent *base, mu_ent *end, mu_config * conf);
00025
00026 void set_fctptrs(mu_config * conf);
00027
00028
00029 int inf_by_rand(mu_ent *first, mu_ent *second);
00030 int inf_by_track(mu_ent *first, mu_ent *second);
00031 int inf_by_posn(mu_ent *first, mu_ent *second);
00032 int inf_by_date(mu_ent *first, mu_ent *second);
00033 int inf_by_length(mu_ent *first, mu_ent *second);
00034 int inf_by_bitrate(mu_ent *first, mu_ent *second);
00035 int inf_by_size(mu_ent *first, mu_ent *second);
00036 int inf_by_artist(mu_ent *first, mu_ent *second);
00037 int inf_by_album(mu_ent *first, mu_ent *second);
00038 int inf_by_title(mu_ent *first, mu_ent *second);
00039 int inf_by_filetype(mu_ent *first, mu_ent *second);
00040 int inf_by_file(mu_ent *first, mu_ent *second);
00041 int inf_by_uri(mu_ent *first, mu_ent *second);
00042 int inf_by_genre(mu_ent *first, mu_ent *second);
00043 int inf_global(mu_ent *first, mu_ent *second, mu_config * conf);
00044
00045 #endif