Changeset 286 for AE/Installer/trunk
- Timestamp:
- Mar 30, 2009, 4:47:10 AM (16 years ago)
- Location:
- AE/Installer/trunk
- Files:
-
- 6 added
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
AE/Installer/trunk/source/methods.h
r282 r286 1 1 #include <string> 2 int main menu();2 int mainMenu(); 3 3 using namespace std; 4 4 -
AE/Installer/trunk/source/subs.cpp
r282 r286 14 14 bool FALSE = 0; 15 15 bool TRUE = 0; 16 17 18 int main(void) 19 { 20 21 // SetConsoleTitle("AE Installer"); windows junk, convert to SDL 22 // system("color 0A"); 23 cout << "\nWelcome to the AE installer!\n"; 24 25 cout << "\nWhat would you like to do?\n"; 26 27 return mainMenu(); 28 29 30 } 16 31 17 32 int mainMenu(void) { … … 45 60 } while(ok == FALSE); 46 61 return 0; 47 }48 void main(void)49 {50 51 // SetConsoleTitle("AE Installer"); windows junk, convert to SDL52 // system("color 0A");53 cout << "\nWelcome to the AE installer!\n";54 55 cout << "\nWhat would you like to do?\n";56 57 mainMenu();58 59 60 62 } 61 63
Note:
See TracChangeset
for help on using the changeset viewer.