mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
- Fixed the return values in some unimolemented functions.
svn path=/trunk/; revision=12696
This commit is contained in:
parent
b95c9c0eba
commit
adecdb10c6
1 changed files with 3 additions and 2 deletions
|
@ -41,7 +41,7 @@ ExfAcquirePushLockExclusive (
|
|||
)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return FALSE;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -54,7 +54,7 @@ ExfAcquirePushLockShared (
|
|||
)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return FALSE;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -67,6 +67,7 @@ ExfReleasePushLock (
|
|||
)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
|
|
Loading…
Reference in a new issue