mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-21 06:01:37 +01:00
rawbytestring so the compiler does not try to convert it to the declared
string type of the function result, as this may not be available
(mantis #32510)
git-svn-id: trunk@37889 -
19 lines
270 B
ObjectPascal
19 lines
270 B
ObjectPascal
{ %norun }
|
|
|
|
unit tw32510;
|
|
interface
|
|
|
|
type
|
|
RawUnicode = type AnsiString(1200);
|
|
|
|
function AnsiToRawUnicode(const AnsiText: RawByteString): RawUnicode;
|
|
|
|
implementation
|
|
|
|
function AnsiToRawUnicode(const AnsiText: RawByteString): RawUnicode;
|
|
begin
|
|
end;
|
|
|
|
initialization
|
|
end.
|