mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
e90b652848
(This used to be commit 03ac082dcb
)
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_ */
|