OK got it.
i have a lot of HMG_Calldll() with "A" Function

when using UTF8 i need "W" Function ... so some Work wait for me
Moderator: Rathinagiri
which Header FilesCarlos Britos wrote: ↑Wed Oct 07, 2020 5:19 pm Hi, you dont need to put A or W. these are settled in the headers files, so you can call one function without adding the suffix A/W
Code: Select all
// set the search
IF hb_cdpSelect() = "UTF8"
nRet := DllCall( nDLL,, "Everything_SetSearchW", cMask )
ELSE
nRet := DllCall( nDLL,, "Everything_SetSearchA", cMask )
ENDIF
you can see "Umlaut" but inside are „ “ -> " ""Rot-Grün – die letzte Bastion der „Biodeutschen“ - Hamburger Abendblatt.pdf"
Code: Select all
IF AT(CHR(34),cName) > 0
cName := STRTRAN(cName,CHR(34),CHR(39))
ENDIF
it is APPLE and iOSserge_girard wrote: ↑Fri Oct 09, 2020 7:40 am Directories with non-ASCII is .... asking for troubles?