Subversion Repositories Kolibri OS

Rev

Rev 6250 | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6250 Rev 6271
1
struct sysdir
1
struct sysdir
2
{
2
{
3
   char name[64];
3
   char name[64];
4
   char path[64];
4
   char path[64];
5
} sysdir;
5
} sysdir;
6
 
6
 
7
 
7
 
8
:int SetAdditionalSystemDirectory(dword tName, tPath)
8
:int SetAdditionalSystemDirectory(dword tName, tPath)
9
{
9
{
10
	int i;
10
	int i;
11
	strcpy(#sysdir.name, tName);
11
	strcpy(#sysdir.name, tName);
12
	strcpy(#sysdir.path, tPath);
12
	strcpy(#sysdir.path, tPath);
13
	debugln(#sysdir.name);
13
	$mov eax, 30
14
	debugln(#sysdir.path);
-
 
15
	$mov eax, 30
-
 
16
	$mov ebx, 3
14
	$mov ebx, 3
17
	ECX = #sysdir;
15
	ECX = #sysdir;
18
	$int 0x40
16
	$int 0x40
19
}
17
}