summaryrefslogtreecommitdiffstats
path: root/libhb/ports.h
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2010-05-22 16:06:20 +0000
committerjstebbins <[email protected]>2010-05-22 16:06:20 +0000
commitf36c5600d21c123e3eac2976d9ec51aa565ab971 (patch)
tree50e4b63d1d2409d7af411155183695c1dbcf7bf3 /libhb/ports.h
parentd01011e06b07b3de049efb97de0d53f70e17a5b1 (diff)
add strtok_r to ports.c for mingw
fixes davidfstr's subtitle work git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3311 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/ports.h')
-rw-r--r--libhb/ports.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libhb/ports.h b/libhb/ports.h
index 6f451b42b..7b743c437 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__