mirror of
https://github.com/samba-team/samba.git
synced 2025-01-04 05:18:06 +03:00
5d452f0d00
Jeremy.
(This used to be commit 5e2571f424
)
15 lines
359 B
C
15 lines
359 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);
|
|
};
|
|
#endif /* _MANGLE_H_ */
|