It would be nice to a possibility to have nested subfolders in Open Source plugin. At the time of writing, only a flat list seems to possible.
What about adding one more field, e.g. parentFolderUniqueId?
struct IVdjSubfoldersList
{
virtual void VDJ_API add(const char* folderUniqueId, const char* folderName = 0) = 0;
};
virtual HRESULT VDJ_API GetFolderList(IVdjSubfoldersList* subfoldersList) { return E_NOTIMPL; }
What about adding one more field, e.g. parentFolderUniqueId?
struct IVdjSubfoldersList
{
virtual void VDJ_API add(const char* folderUniqueId, const char* folderName = 0, const char* parentFolderUniqueId = 0) = 0;
};
Posted Mon 17 Jun 24 @ 11:22 am