mirror of
https://github.com/reactos/reactos.git
synced 2024-12-31 19:42:51 +00:00
[BASESRV]
Fix the "fix" of r59887, i.e. add a stub for the unknown api. svn path=/trunk/; revision=59888
This commit is contained in:
parent
def8f5f442
commit
7286005d2c
2 changed files with 7 additions and 0 deletions
|
@ -26,6 +26,7 @@ CSR_API(BaseSrvRegisterThread);
|
|||
CSR_API(BaseSrvSxsCreateActivationContext);
|
||||
CSR_API(BaseSrvSetTermsrvAppInstallMode);
|
||||
CSR_API(BaseSrvSetTermsrvClientTimeZone);
|
||||
CSR_API(BaseSrvUnknown);
|
||||
|
||||
/* sndsntry.c */
|
||||
CSR_API(BaseSrvSoundSentryNotification);
|
||||
|
|
|
@ -44,6 +44,12 @@ CSR_API(BaseSrvSetTermsrvClientTimeZone)
|
|||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
CSR_API(BaseSrvUnknown)
|
||||
{
|
||||
DPRINT1("%s not yet implemented\n", __FUNCTION__);
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
CSR_API(BaseSrvGetTempFile)
|
||||
{
|
||||
static UINT BaseGetTempFileUnique = 0;
|
||||
|
|
Loading…
Reference in a new issue