Changeset 322 in dev for trunk/abdev/BasicCompiler_Common/BasicCompiler.cpp
- Timestamp:
- Sep 24, 2007, 2:58:10 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/BasicCompiler.cpp
r312 r322 90 90 MessageBox(0,temporary,"TestMessage",0); 91 91 } 92 void ts(c har *msg){92 void ts(const char *msg){ 93 93 MessageBox(0,msg,"TestMessage",0); 94 94 } 95 void ts(c har *msg,char *title){95 void ts(const char *msg,const char *title){ 96 96 MessageBox(0,msg,title,0); 97 97 } … … 207 207 lstrcat(temporary,path+i); 208 208 lstrcpy(path,temporary); 209 } 210 std::string GetApplicationBaseFullPath( const std::string &relationalPath ) 211 { 212 char fullPath[1024]; 213 lstrcpy( fullPath, relationalPath.c_str() ); 214 GetFullPath( fullPath, Jenga::Common::Environment::GetAppDir() ); 215 return fullPath; 209 216 } 210 217
Note:
See TracChangeset
for help on using the changeset viewer.