Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
function WriteRegBinary(Key: HKEY; Name: string; const Buffer; BufSize: Integer) : boolean;
begin
try
Result:= RegSetValueEx(Key, PChar(Name), nil, REG_BINARY, PByte(Buffer),
BufSize) = ERROR_SUCCESS;
except
result := False;
end;
end;