diff options
author | jstebbins <[email protected]> | 2009-11-25 21:14:44 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2009-11-25 21:14:44 +0000 |
commit | 009238a822971a933d0b7642fd04c15bf8e404a2 (patch) | |
tree | 0979d88ba5116f4ad7e41f55bc7f93a1a82040b9 /libhb/ports.h | |
parent | 08483929dd5352012eb8b1f1143f138e3d5f19f0 (diff) |
batch file scanning and scan cancel
When a directory is specified as the source, first we attempt to open as a dvd,
then if that fails, we attempt to open each file in the directory as a stream
source. Since opening a large directory of files can take a really long time,
you can also now cancel a scan.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2980 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/ports.h')
-rw-r--r-- | libhb/ports.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libhb/ports.h b/libhb/ports.h index 0f3697f0d..47be2d76e 100644 --- a/libhb/ports.h +++ b/libhb/ports.h @@ -7,6 +7,12 @@ #ifndef HB_PORTS_H #define HB_PORTS_H +#if defined(_WIN32) +#define DIR_SEP_STR "\\" +#else +#define DIR_SEP_STR "/" +#endif + /************************************************************************ * Utils ***********************************************************************/ |