Table of Content
HAL Forum
function boolean Link_File (
string Location)
Description:
Links a .hob package with rest of the system. Returns true if the linking went successfully.
Parameters:
Location Path and name of the file to link.
procedure FindAndActiveLanguage(string langcode,string filenameext)
begin
  boolean vpsel;
  string 255 filename,progcode;
  
  filename = HobFolder & "su" & filenameext & ".hob";
  
  if (FileExists(filename)) then begin
    if (Link_File(filename)) then begin
    end;
  end;
    
  return;
end;

Related topics:
««