| get_acc_level Function | 
Unit
Unit5
Declaration
Function get_acc_level(mode_: Integer): Integer;Implementation
 
function get_acc_level(mode_: Integer) : Integer;
var ini1:TIniFile;
begin
ini1:=TIniFile.Create(form2.root+'wikibrowse.ini');
if mode_=1 then result:=ini1.ReadInteger('system','wacclevel',HIGH_PRIORITY_CLASS) else
   result:=ini1.ReadInteger('system','iacclevel',NORMAL_PRIORITY_CLASS);
ini1.free;
End; | 
| 
 |