Subversion Repositories Kolibri OS

Rev

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

Rev 2874 Rev 3020
Line 44... Line 44...
44
 
44
 
45
///////////////////////////
45
///////////////////////////
46
//    Ñîçäàíèå ïàïêè     //
46
//    Ñîçäàíèå ïàïêè     //
47
///////////////////////////
47
///////////////////////////
48
f70 create_dir_70;
48
f70 create_dir_70;
49
:int CreateFolder(dword new_folder_path)
49
:int CreateDir(dword new_folder_path)
50
{
50
{
51
	create_dir_70.func = 9;
51
	create_dir_70.func = 9;
52
	create_dir_70.param1 = 
52
	create_dir_70.param1 = 
53
	create_dir_70.param2 = 
53
	create_dir_70.param2 = 
Line 185... Line 185...
185
	read_file_70.name = file_path;
185
	read_file_70.name = file_path;
186
	$mov eax,70
186
	$mov eax,70
187
	$mov ebx,#read_file_70.func
187
	$mov ebx,#read_file_70.func
188
	$int 0x40
188
	$int 0x40
189
}
189
}
190
190
 
-
 
191
inline fastcall void SetCurDir( ECX)
-
 
192
{
-
 
193
    $mov eax,30
-
 
194
    $mov ebx,1
-
 
195
    $int 0x40
-
 
196
}
-
 
197
 
-
 
198
inline fastcall void GetCurDir( ECX, EDX)
-
 
199
{
-
 
200
    $mov eax,30
-
 
201
    $mov ebx,2
-
 
202
    $int 0x40
-
 
203
}
-
 
204
191
205