Пример #1
0
 public bool Save(CoreDll.FileType fileType, string fileName)
 {
     return(m_dll.adSaveW(m_handle, fileType, fileName) == CoreDll.Error.Ok);
 }
Пример #2
0
 public bool Clear(CoreDll.FileType fileType)
 {
     return(m_dll.adClear(m_handle, fileType) == CoreDll.Error.Ok);
 }
Пример #3
0
 public bool Load(CoreDll.FileType fileType, string fileName, bool check)
 {
     return(m_dll.adLoadW(m_handle, fileType, fileName, check ? CoreDll.TRUE : CoreDll.FALSE) == CoreDll.Error.Ok);
 }