1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00
Jeremy Allison 02e3717ee9 r6625: Remove another global variable left over from a long time ago (magic char).
Jeremy.
(This used to be commit b1bfa9cb37deb22d1d08bc60ba44d61334f6446e)
2007-10-10 10:56:47 -05:00

15 lines
432 B
C

#ifndef _MANGLE_H_
#define _MANGLE_H_
/*
header for 8.3 name mangling interface
*/
struct mangle_fns {
void (*reset)(void);
BOOL (*is_mangled)(const char *s, int snum);
BOOL (*is_8_3)(const char *fname, BOOL check_case, BOOL allow_wildcards, int snum);
BOOL (*check_cache)(char *s, size_t maxlen, int snum);
void (*name_map)(char *OutName, BOOL need83, BOOL cache83, int default_case, int snum);
};
#endif /* _MANGLE_H_ */