Untitled
unknown
plain_text
a month ago
781 B
1
Indexable
Never
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."); } } }
Leave a Comment