Somewhat of a start

This commit is contained in:
Fatbag 2011-11-24 00:53:35 -06:00
commit 8a16e52bf6
66 changed files with 1872 additions and 0 deletions

16
Tools/FARDive/FARDive.hpp Normal file
View file

@ -0,0 +1,16 @@
#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();
}