r15385: Some work to bring the python code up to date with the
[Samba/gebeck_regimport.git] / source / include / mangle.h
blob2bdef4ad6469440c4c0e8087c17f2b3c0e972959
1 #ifndef _MANGLE_H_
2 #define _MANGLE_H_
3 /*
4 header for 8.3 name mangling interface
5 */
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);
14 #endif /* _MANGLE_H_ */