Changeset 504 for AE/Installer/trunk/source/globals.h
- Timestamp:
- Mar 27, 2010, 4:48:25 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
AE/Installer/trunk/source/globals.h
r503 r504 10 10 11 11 12 #pragma mark INCLUDES12 //#pragma mark INCLUDES 13 13 #include <fstream> 14 14 #include <string> … … 19 19 #include <errno.h> 20 20 #include <sstream> 21 #include "boost/thread.hpp"22 #include "boost/tokenizer.hpp"23 #include "boost/lexical_cast.hpp" // int -> string24 #include "boost/algorithm/string.hpp"25 #include "boost/filesystem.hpp" // includes all needed Boost.Filesystem declarations26 using namespace boost::filesystem;27 using namespace std;28 21 #ifdef WIN32 29 22 #include <windows.h> … … 39 32 #include "wx/wx.h" 40 33 #endif 34 #include "boost/thread.hpp" 35 #include "boost/tokenizer.hpp" 36 #include "boost/lexical_cast.hpp" // int -> string 37 #include "boost/algorithm/string.hpp" 38 #include "boost/filesystem.hpp" // includes all needed Boost.Filesystem declarations 39 using namespace boost::filesystem; 40 using namespace std; 41 41 42 #pragma mark DEFINES42 //#pragma mark DEFINES 43 43 #define INSTALLER_VERSION "1.2" // only place we need to change this 44 44 #define UPDATE_LOG_READ_ERR -1 … … 50 50 #define UPDATE_INST_AVAIL 3 51 51 #define UPDATE_CONT_UPD 4 52 53 #pragma mark STRUCTS52 #define UPDATE_THIRD_PARTY 5 53 //#pragma mark STRUCTS 54 54 struct ModPackage 55 55 { … … 58 58 string name; 59 59 string modStringName; 60 int modStringVersion;60 float modStringVersion; 61 61 string platform; 62 62 bool hasOnis; … … 92 92 93 93 94 #pragma mark PROTOTYPES94 //#pragma mark PROTOTYPES 95 95 void recompileAll(vector<string>); 96 96 int globalizeData(void); … … 99 99 bool ProcessInstallerUpdate(Install_info_cfg *, Install_info_cfg *); 100 100 bool ProcessAEUpdate(Install_info_cfg *, Install_info_cfg *, bool *); 101 bool ProcessThirdPartyUpdates(void); 101 102 void callRefreshMods(void); 102 103 string escapePath(string input);
Note:
See TracChangeset
for help on using the changeset viewer.