/* 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 EDBSAVE_H #define EDBSAVE_H #include "edbtypes.h" #include /* -------------------------------------------------------------------------- */ EdbBool EdbSave(Edb*, FILE* fp); EdbBool EdbSaveV2(Edb*, FILE* fp); /* deprecated: old EDB version 2 */ EdbBool EdbSaveFile(Edb*, const char* filename); EdbBool EdbSaveCrypted(Edb*, const char* filename, const char* passwd,unsigned); /* -------------------------------------------------------------------------- */ #endif