Initial import
[samba] / source / include / mangle.h
diff --git a/source/include/mangle.h b/source/include/mangle.h
new file mode 100644 (file)
index 0000000..2bdef4a
--- /dev/null
@@ -0,0 +1,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_ */