- Fixed the return values in some unimolemented functions.

svn path=/trunk/; revision=12696
This commit is contained in:
Hartmut Birr 2005-01-01 11:51:16 +00:00
parent b95c9c0eba
commit adecdb10c6

View file

@ -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 */