mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
e0da56a848
to connection struct entries (as they should have been from
the start). Jerry, once you've cut over to 3.0.4 release
branch I'll add this to 3.0 also.
- Jerry cut over :-).
Jeremy.
(This used to be commit 578a508509
)
15 lines
377 B
C
15 lines
377 B
C
#ifndef _MANGLE_H_
|
|
#define _MANGLE_H_
|
|
/*
|
|
header for 8.3 name mangling interface
|
|
*/
|
|
|
|
struct mangle_fns {
|
|
BOOL (*is_mangled)(const char *s);
|
|
BOOL (*is_8_3)(const char *fname, BOOL check_case, BOOL allow_wildcards);
|
|
void (*reset)(void);
|
|
BOOL (*check_cache)(char *s);
|
|
void (*name_map)(char *OutName, BOOL need83, BOOL cache83, int default_case);
|
|
};
|
|
#endif /* _MANGLE_H_ */
|