Untitled
unknown
plain_text
a year ago
781 B
8
Indexable
public void SetPdlUrlsData(List<string, int, int> urlsDataList)
{
var entries = mStorage.getRoot().GetChildResource((int)Storage.Resources.RES_LIST_PDL_URLS, out var success);
foreach (var entry in entries.EnumerateChildResources())
{
if (entry.GetStringAttribute((int)Storage.Attributes.ATTR_PDL_URL, out var url))
{
int newSpoolFileId = 300; //getSpoolFileId(pdlUrls, urlsDataList);
entry.SetStringAttribute(Storage.Attributes.ATTR_MULTIPLE_PDL_FILEID, newSpoolFileId.ToString());
}
else
{
Dus.Fatal("Queue entry has no queue entry ID.");
}
}
}Editor is loading...
Leave a Comment