////////////////////////////////////////////////////////////////////////////////
//
// step11.pas -     Delphi
//
////////////////////////////////////////////////////////////////////////////////
unit Step11;

interface
 procedure  LIBRARYENTRY( comm: WORD  ); Pascal;
 function   LIBRARYNAME : PChar;         Pascal;

 implementation

 uses  LibTool, Sysutils;

//----------------------------------------------------------------------------------------
//   
//---
procedure  LIBRARYENTRY( comm : Word  );  pascal;
begin
  //   
  ksMessage( '' );
end;

//----------------------------------------------------------------------------------------
//  
//---
function LIBRARYNAME : PChar;  pascal;
begin
  Result:='   (Delphi)';
end;

end.
