view libmpdemux/mf.h @ 21268:3204ae054ea6

Use gtk_spin_button_get_value_as_int instead of gtk_spin_button_get_value since it both is more correct and is available on gtk1 under the same name.
author reimar
date Sun, 26 Nov 2006 21:21:27 +0000
parents 0c7ad1c632cc
children 3f0d00abc073
line wrap: on
line source


#ifndef _MF_H
#define _MF_H

extern int    mf_w;
extern int    mf_h;
extern float  mf_fps;
extern char * mf_type;

typedef struct
{
 int curr_frame;
 int nr_of_files;
 char ** names;
} mf_t;

mf_t* open_mf(char * filename);

#endif