mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
20 lines
454 B
C
20 lines
454 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS system libraries
|
|
* FILE: subsys/csrss/include/destkopbg.h
|
|
* PURPOSE: CSRSS internal desktop background window interface
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "api.h"
|
|
|
|
/* Api functions */
|
|
CSR_API(CsrCreateDesktop);
|
|
CSR_API(CsrShowDesktop);
|
|
CSR_API(CsrHideDesktop);
|
|
CSR_API(CsrRegisterSystemClasses);
|
|
|
|
BOOL FASTCALL DtbgIsDesktopVisible(VOID);
|
|
|
|
/* EOF */
|