This commit was manufactured by cvs2svn to create branch 'SAMBA_3_0'.(This used to...
[ira/wip.git] / source3 / include / mangle.h
1 /*
2   header for 8.3 name mangling interface 
3 */
4
5 struct mangle_fns {
6         BOOL (*is_mangled)(const char *s);
7         BOOL (*is_8_3)(const char *fname, BOOL check_case);
8         void (*reset)(void);
9         BOOL (*check_cache)(char *s);
10         BOOL (*name_map)(char *OutName, BOOL need83, BOOL cache83);
11 };