r1564: checking in changes for 2.2.10
[Samba.git] / jerry2 / source / include / mangle.h
blobd86cfd6ef1a9eeeee881d9e0df354ebd1342106d
1 #ifndef _MANGLE_H_
2 #define _MANGLE_H_
3 /*
4 header for 8.3 name mangling interface
5 */
7 struct mangle_fns {
8 BOOL (*is_mangled)(const char *s);
9 BOOL (*is_8_3)(const char *fname, BOOL check_case, BOOL allow_wildcards);
10 void (*reset)(void);
11 BOOL (*check_cache)(char *s, size_t maxlen);
12 void (*name_map)(char *OutName, BOOL need83, BOOL cache83);
14 #endif /* _MANGLE_H_ */