client-side support for svn_depth_exclude.) */ svn_depth_exclude = -1, /** Just the named directory D, no entries. Updates will not pull in any files or subdirectories not already present. */ svn_depth_empty = 0, /** D + its file children, but not subdirs. Updates will pull in any files not already present, but not subdirectories. */ svn_depth_files = 1, /** D + immediate children (D and its entries). Updates will pull in any files or subdirectories not already present; those subdirectories' this_dir entries will have depth-empty. */ svn_depth_immediates = 2, /** D + all descendants (full recursion from D). Updates will pull in any files or subdirectories not already present; those subdirectories' this_dir entries will have depth-infinity. Equivalent to the pre-1.5 default update behavior. */ svn_depth_infinity = 3 } svn_depth_t; #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* SVN_TYPES_IMPL_H */