mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
27 lines
352 B
C
27 lines
352 B
C
#define NDEBUG
|
|
|
|
#include "w32csr.h"
|
|
#include <debug.h>
|
|
|
|
CSR_API(CsrCreateDesktop)
|
|
{
|
|
return STATUS_SUCCESS;
|
|
}
|
|
|
|
CSR_API(CsrShowDesktop)
|
|
{
|
|
return STATUS_SUCCESS;
|
|
}
|
|
|
|
CSR_API(CsrHideDesktop)
|
|
{
|
|
return STATUS_SUCCESS;
|
|
}
|
|
|
|
BOOL
|
|
FASTCALL DtbgIsDesktopVisible(VOID)
|
|
{
|
|
return !((BOOL)NtUserCallNoParam(NOPARAM_ROUTINE_ISCONSOLEMODE));
|
|
}
|
|
|
|
/* EOF */
|