mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-15 14:51:21 +00:00
16 lines
No EOL
314 B
C++
16 lines
No EOL
314 B
C++
#include "version.hpp"
|
|
|
|
namespace Archive {
|
|
extern wchar_t Path[1024], Filename[1024];
|
|
|
|
extern bool IsOpen;
|
|
extern bool IsModified;
|
|
|
|
bool Add(const wchar_t * Path);
|
|
bool Close();
|
|
bool Open();
|
|
bool PopulateEntries();
|
|
bool Save();
|
|
bool SaveAs();
|
|
bool SetWorkspace();
|
|
} |