Subversion Repositories Kolibri OS

Rev

Rev 7995 | Rev 8389 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7995 Rev 8383
Line 3... Line 3...
3
*/
3
*/
Line 4... Line 4...
4
 
4
 
5
#define MEMSIZE 4096 * 15
5
#define MEMSIZE 4096 * 15
6
#include "..\lib\strings.h" 
6
#include "..\lib\strings.h" 
7
#include "..\lib\mem.h" 
-
 
8
#include "..\lib\io.h"
7
#include "..\lib\mem.h" 
Line 9... Line 8...
9
#include "..\lib\gui.h"
8
#include "..\lib\gui.h"
10
 
9
 
11
#include "..\lib\obj\libio.h"
10
#include "..\lib\obj\libio.h"
Line 264... Line 263...
264
	}
263
	}
265
	strcat(#run_app_path, app_path);
264
	strcat(#run_app_path, app_path);
266
	// }end
265
	// }end
Line 267... Line 266...
267
 
266
 
268
	if (file_exists(#run_app_path)) {
267
	if (file_exists(#run_app_path)) {
269
		io.run(#run_app_path, param_pos); //0 or offset
268
		RunProgram(#run_app_path, param_pos); //0 or offset
270
		if (param_pos) ESBYTE[param_pos - 1] = '|';
269
		if (param_pos) ESBYTE[param_pos - 1] = '|';
271
	} else {
270
	} else {
272
		notify("'Application not found' -E");
271
		notify("'Application not found' -E");
273
	}
272
	}