mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-09 02:28:14 +02:00
18 lines
270 B
ObjectPascal
18 lines
270 B
ObjectPascal
{$mode objfpc}
|
|
type
|
|
TT_Stream = record z : Pointer; end;
|
|
|
|
TFreeTypeStream = class
|
|
FUsed : Boolean;
|
|
end;
|
|
|
|
procedure TT_Done_Stream( stream : TT_Stream );
|
|
begin
|
|
if stream.z = nil then exit;
|
|
TFreeTypeStream(stream.z).FUsed := false;
|
|
end;
|
|
|
|
|
|
begin
|
|
end.
|