}
/* returns 1 if row matches score item, -1 otherwise */
-static int add_item_score(const void *row, struct mood_item *item, long *score,
+static int add_item_score(const struct osl_row *row, struct mood_item *item, long *score,
long *score_arg_sum)
{
int ret = 100;
return 1;
}
-static int compute_mood_score(const void *row, long *result)
+static int compute_mood_score(const struct osl_row *row, long *result)
{
struct mood_item *item;
int match = 0;
return ret;
}
-static int load_mood(const void *row)
+static int load_mood(const struct osl_row *row)
{
int ret;
struct mood *new_mood, *old_mood = current_mood;
struct admissible_file_info
{
/** The admissible audio file. */
- void *aft_row;
+ struct osl_row *aft_row;
/** Its score. */
long score;
};