mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-22 06:20:45 +02:00
LCL: fixed wince compilation
git-svn-id: trunk@15203 -
This commit is contained in:
parent
3e86fa25cd
commit
4d8c5628cf
@ -95,6 +95,11 @@ var EncodingValid: boolean = false;
|
||||
function GetWindowsEncoding: string;
|
||||
var
|
||||
cp : UINT;
|
||||
{$IFDEF WinCE}
|
||||
// CP_UTF8 is missing in the windows unit of the Windows CE RTL
|
||||
const
|
||||
CP_UTF8 = 65001;
|
||||
{$ENDIF}
|
||||
begin
|
||||
cp := GetACP;
|
||||
case cp of
|
||||
|
Loading…
Reference in New Issue
Block a user