Subversion Repositories Kolibri OS

Rev

Rev 6250 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4113 leency 1
 
2
{
3
   char name[64];
4
   char path[64];
5
} sysdir;
6
7
 
8
 
6250 leency 9
{
4113 leency 10
	int i;
11
	strcpy(#sysdir.name, tName);
12
	strcpy(#sysdir.path, tPath);
13
	$mov eax, 30
14
	$mov ebx, 3
15
	ECX = #sysdir;
16
	$int 0x40
17
}
18