Initial import
[samba] / source / include / mangle.h
1 #ifndef _MANGLE_H_
2 #define _MANGLE_H_
3 /*
4   header for 8.3 name mangling interface 
5 */
6
7 struct mangle_fns {
8         void (*reset)(void);
9         BOOL (*is_mangled)(const char *s, int snum);
10         BOOL (*is_8_3)(const char *fname, BOOL check_case, BOOL allow_wildcards, int snum);
11         BOOL (*check_cache)(char *s, size_t maxlen, int snum);
12         void (*name_map)(char *OutName, BOOL need83, BOOL cache83, int default_case, int snum);
13 };
14 #endif /* _MANGLE_H_ */