mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 08:48:08 +02: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.
|