IlvFileChooser をデフォルトのディレクトリーで開こうとしていますが、それを行うためのオプションが見つかりません。アイデアはありますか?
IlvFileChooserOptions* opt = new IlvFileChooserOptions(IlvFileChooserOpen);
opt->addFilter("Comma separated files (*.csv)", "csv");
IlvFileChooser* dlg = new IlvFileChooser(SIDGetDisplay(), 0, 0, opt);
if (dlg->get() > 0)
{
...
}