summaryrefslogtreecommitdiff
path: root/source3/include/mangle.h
blob: 2bdef4ad6469440c4c0e8087c17f2b3c0e972959 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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_ */