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

Last change on this file since 291 was 290, checked in by gumby, 16 years ago
File size: 374 bytes
RevLine 
[278]1#include <string>
[290]2#include <vector>
3
4
[278]5using namespace std;
6
[290]7struct ModPackage {
8 bool isInstalled; //replace with function
9 string *name;
10};
11
12int mainMenu();
13vector<ModPackage> getPackages();
14ModPackage fileToModPackage(FILE&);
15
[278]16void installPackages();
17void uninstallPackages();
18void getInstalledPackages();
19
20bool getDirectoryContents(char , char &);
21
Note: See TracBrowser for help on using the repository browser.