Hi Przemek (and All),
When you find some spare time, could you help in
converting these ANSI Windows API calls to native
ones?:
---
source/common/hbver.c:264: if( GetVersionExA( &osVer ) )
source/common/hbver.c:306: if( GetVersionExA
( ( OSVERSIONINFOA * ) &osVerEx ) )
source/common/hbgete.c:75: DWORD size =
GetEnvironmentVariableA( szName, NULL, 0 );
source/common/hbgete.c:80: GetEnvironmentVariableA
( szName, pszBuffer, size );
source/common/hbgete.c:114: bRetVal = GetEnvironmentVariableA
( szName, szBuffer, nSize ) != 0;
source/common/hbgete.c:157: return SetEnvironmentVariableA
( szName, szValue ) != 0;
source/rtl/filesys.c:2687: fResult = GetCurrentDirectoryA
( ulSize, pszBuffer );
source/rtl/filesys.c:2876: type = GetDriveTypeA( buffer );
source/rtl/fstemp.c:153: if( ! GetTempPathA( ( DWORD )
( HB_PATH_MAX - 1 ), pszName ) )
source/rtl/fstemp.c:270: if( ! GetTempPathA( ( DWORD )
HB_PATH_MAX, szTempDir ) )
source/rtl/fstemp.c:278: fResult = GetTempFileNameA
( szTempDir, pszPrefix ? pszPrefix : "hb", 0, pszBuffer );
source/rtl/net.c:157: GetComputerNameA( pszValue, &ulLen );
source/rtl/net.c:186: GetUserNameA( pszValue, &ulLen );
contrib/hbwin/win_prn2.c:169: DWORD dwSize =
GetProfileStringA( "windows", "device", "", pPrinterName,
*pdwBufferSize );
+ plus a few dynamically called ones, but I'm not exactly sure
how to handle them properly.
---
I could start doing it, but I fear that I'd do it either
in not very optimal way, and/or would break something along
the way :(
If you'd just modify the typical cases, I could apply the
logic to the rest of occurrences.
This move would be important to untie Unicode Harbour versions
from Windows's internal ANSI-Unicode conversion and be able to
take it in our hands. It's also simply good practice to use
non-ANSI versions in Unicode programs.
Brgds,
Viktor
_______________________________________________
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour