Adding support to convert Unicode filenames into AmigaOS filenames

This commit is contained in:
Tygre
2021-06-08 13:26:23 -04:00
parent 39f1cc8a10
commit 4c51651c3f
7 changed files with 849 additions and 67 deletions
+6
View File
@@ -18,6 +18,8 @@
#include <smb/smb_mount.h>
#endif /* _SMB_MOUNT_H */
#include "kvs.h"
struct smb_server
{
enum smb_protocol protocol; /* The protocol this
@@ -88,6 +90,10 @@ struct smb_server
/* olsen (2018-06-11): Prefer SMB core protocol commands over NT1 commands. */
int prefer_core_protocol;
// Tygre 21/05/15: Stores for UTF16le strings and their sizes
KVSstore *latin1_to_utf16le_bytes;
KVSstore *latin1_to_utf16le_sizes;
};
#endif