/* Copyright 2017-2024 by Altair Engineering Inc. All rights reserved. =========================================================================== This source code belongs to Altair Engineering Inc. It is considered trade secret, and is not to be divulged or used or copied by parties who have not received written authorization from the owner, Altair Engineering Inc. ============================================================================ Title: EDB. Description: Implements edb save and restore Author: Lothar Linhard ============================================================================ */ #ifndef EDBRESTORE_H #define EDBRESTORE_H #include "edbtypes.h" #include /* -------------------------------------------------------------------------- */ EdbBool EdbRestore(Edb*, FILE* fp); EdbBool EdbRestoreFile(Edb*, const char* filename); EdbBool EdbRestoreCrypted(Edb*, const char* filename, const char* passwd); /* -------------------------------------------------------------------------- */ #endif