Subversion Repositories freemyipod

Rev

Rev 526 | Rev 820 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 526 Rev 755
Line 115... Line 115...
115
    const struct chooser_action_handler_wheel_params* params;
115
    const struct chooser_action_handler_wheel_params* params;
116
    params = (const struct chooser_action_handler_wheel_params*)(data->info->actionhandlerparams);
116
    params = (const struct chooser_action_handler_wheel_params*)(data->info->actionhandlerparams);
117
    return params->stepsperitem;
117
    return params->stepsperitem;
118
}
118
}
119
 
119
 
120
static void chooser_ction_handler_wheel_destroy(struct chooser_data* data)
120
static void chooser_action_handler_wheel_destroy(struct chooser_data* data)
121
{
121
{
122
    free(data->actionhandlerdata);
122
    free(data->actionhandlerdata);
123
}
123
}
124
 
124
 
125
 
125
 
Line 128... Line 128...
128
    .version = CHOOSER_ACTION_HANDLER_VERSION,
128
    .version = CHOOSER_ACTION_HANDLER_VERSION,
129
    .init = chooser_action_handler_wheel_init,
129
    .init = chooser_action_handler_wheel_init,
130
    .handleevent = chooser_action_handler_wheel_handleevent,
130
    .handleevent = chooser_action_handler_wheel_handleevent,
131
    .handletick = chooser_action_handler_wheel_handletick,
131
    .handletick = chooser_action_handler_wheel_handletick,
132
    .stepsperitem = chooser_action_handler_wheel_stepsperitem,
132
    .stepsperitem = chooser_action_handler_wheel_stepsperitem,
133
    .destroy = chooser_ction_handler_wheel_destroy
133
    .destroy = chooser_action_handler_wheel_destroy
134
};
134
};