I am using tinyfiledialogs lib and i am able to save files in folders which names are in English but when i try to save the exact same file in folder which name is like for example "Кот" in other words in Russian letter i could not.
This is the code
IntPtr p = tinyfd_saveFileDialog(sDialogTitle, sInitialPathAndFile,
filterPatterns.Length, filterPatterns, sPatternDesc);
This is defined in somelib that i am using
[DllImport("tinyfiledialogs", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)]
public static extern IntPtr tinyfd_saveFileDialog(string aTitle, string aDefaultPathAndFile, int aNumOfFilterPatterns, string[] aFilterPatterns, string aSingleFilterDescription);
Any help?I am newbee to this lib and could not find any essential information regarding this.