forked from KolibriOS/kolibrios
036bb48ceb
git-svn-id: svn://kolibrios.org@6250 a494cfbc-eb01-0410-851d-a64ba20cac60
21 lines
313 B
C
21 lines
313 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);
|
|
debugln(#sysdir.name);
|
|
debugln(#sysdir.path);
|
|
$mov eax, 30
|
|
$mov ebx, 3
|
|
ECX = #sysdir;
|
|
$int 0x40
|
|
}
|