source: AE/Installer/trunk/source/methods.h@ 292

Last change on this file since 292 was 292, checked in by gumby, 16 years ago

Updatezors

File size: 394 bytes
Line 
1#include <string>
2#include <vector>
3#include <fstream>
4
5using namespace std;
6
7struct ModPackage {
8 bool isInstalled; //replace with function
9 string *name;
10};
11
12int mainMenu();
13vector<ModPackage> getPackages();
14ModPackage fileToModPackage(fstream);
15
16void installPackages();
17void uninstallPackages();
18void getInstalledPackages();
19
20bool getDirectoryContents(char , char &);
21
Note: See TracBrowser for help on using the repository browser.