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