mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-09-13 14:08:35 -04:00
19 lines
263 B
C
19 lines
263 B
C
|
|
struct sysdir
|
|
{
|
|
char name[64];
|
|
char path[64];
|
|
} sysdir;
|
|
|
|
|
|
:int SetAdditionalSystemDirectory(dword tName, tPath)
|
|
{
|
|
int i;
|
|
strcpy(#sysdir.name, tName);
|
|
strcpy(#sysdir.path, tPath);
|
|
$mov eax, 30
|
|
$mov ebx, 3
|
|
ECX = #sysdir;
|
|
$int 0x40
|
|
}
|