Changeset 290 for AE/Installer/trunk/source/methods.h
- Timestamp:
- Apr 4, 2009, 6:13:36 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
AE/Installer/trunk/source/methods.h
r286 r290 1 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 2 12 int mainMenu(); 3 using namespace std; 13 vector<ModPackage> getPackages(); 14 ModPackage fileToModPackage(FILE&); 4 15 5 16 void installPackages(); … … 9 20 bool getDirectoryContents(char , char &); 10 21 11 struct ModPackage {12 bool isInstalled; //replace with function13 string *name;14 };
Note:
See TracChangeset
for help on using the changeset viewer.