Exemple #1
0
 public void ConvertTo(ref CoreDll.adPathWithSubFolderW pathWithSubFolder)
 {
     pathWithSubFolder.enableSubFolder = enableSubFolder ? CoreDll.TRUE : CoreDll.FALSE;
     pathWithSubFolder.path            = path;
 }
Exemple #2
0
 public CorePathWithSubFolder(ref CoreDll.adPathWithSubFolderW pathWithSubFolder)
 {
     enableSubFolder = pathWithSubFolder.enableSubFolder != CoreDll.FALSE;
     path            = pathWithSubFolder.path;
 }