/
githubmirror
/
x64dbg
Обзор
Документация
Войти
/
githubmirror
/
x64dbg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
development
src/dbg/database.h
21 строка
521 B
Torusrxxx
Trace recording (#1736)
16 окт 2017, 21:00
16 окт 2017, 21:00
390bf4c
Код
Авторство
О чём код?
#ifndef _DATABASE_H #define _DATABASE_H #include "_global.h" enum class DbLoadSaveType { CommandLine, DebugData, All }; void DbSave(DbLoadSaveType saveType, const char* dbfile = nullptr, bool disablecompression = false); void DbLoad(DbLoadSaveType loadType, const char* dbfile = nullptr); void DbClose(); void DbClear(bool terminating = false); void DbSetPath(const char* Directory, const char* ModulePath); bool DbCheckHash(duint currentHash); duint DbGetHash(); #endif // _DATABASE_H