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

Last change on this file since 290 was 290, checked in by gumby, 16 years ago
File size: 374 bytes
Line 
1#include <string>
2#include <vector>
3
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(FILE&);
15
16void installPackages();
17void uninstallPackages();
18void getInstalledPackages();
19
20bool getDirectoryContents(char , char &);
21
Note: See TracBrowser for help on using the repository browser.