mirror of
https://github.com/reactos/reactos.git
synced 2025-04-21 04:37:15 +00:00
SetDllDirectoryA/W(): lie to caller and indicate that their request completed successfully
svn path=/trunk/; revision=11975
This commit is contained in:
parent
902d0f0826
commit
7a672d567c
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: stubs.c,v 1.97 2004/12/04 19:45:56 navaraf Exp $
|
/* $Id: stubs.c,v 1.98 2004/12/07 20:18:49 royce Exp $
|
||||||
*
|
*
|
||||||
* KERNEL32.DLL stubs (STUB functions)
|
* KERNEL32.DLL stubs (STUB functions)
|
||||||
* Remove from this file, if you implement them.
|
* Remove from this file, if you implement them.
|
||||||
|
@ -1316,7 +1316,7 @@ SetDllDirectoryW(
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
STUB;
|
STUB;
|
||||||
return 0;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -1630,7 +1630,7 @@ SetDllDirectoryA(
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
STUB;
|
STUB;
|
||||||
return 0;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue