X-Git-Url: http://git.osdn.jp/view?a=blobdiff_plain;f=libhb%2Fports.h;h=7b743c437eed8d9bff3b3a9ab35a746da76c3484;hb=4f0019f03c2e85e8634150ff0c9a31bee6d35ce5;hp=47be2d76e52a6dbb5c581332a958f6212900a3da;hpb=7dc534bc87accdf2d58a0a6e8e209fdf9c46f41a;p=handbrake-jp%2Fhandbrake-jp-git.git diff --git a/libhb/ports.h b/libhb/ports.h index 47be2d76..7b743c43 100644 --- a/libhb/ports.h +++ b/libhb/ports.h @@ -19,6 +19,9 @@ uint64_t hb_get_date(); void hb_snooze( int delay ); int hb_get_cpu_count(); +#ifdef SYS_MINGW +char *strtok_r(char *s, const char *delim, char **save_ptr); +#endif #ifdef __LIBHB__ @@ -30,9 +33,9 @@ int hb_get_cpu_count(); int hb_dvd_region(char *device, int *region_mask); /************************************************************************ - * Files utils + * File utils ***********************************************************************/ -void hb_get_tempory_directory( hb_handle_t * h, char path[512] ); +void hb_get_temporary_directory( char path[512] ); void hb_get_tempory_filename( hb_handle_t *, char name[1024], char * fmt, ... ); void hb_mkdir( char * name ); @@ -80,7 +83,9 @@ typedef struct hb_cond_s hb_cond_t; hb_cond_t * hb_cond_init(); void hb_cond_wait( hb_cond_t *, hb_lock_t * ); +void hb_cond_timedwait( hb_cond_t * c, hb_lock_t * lock, int msec ); void hb_cond_signal( hb_cond_t * ); +void hb_cond_broadcast( hb_cond_t * c ); void hb_cond_close( hb_cond_t ** ); /************************************************************************