mirror of
https://github.com/reactos/reactos.git
synced 2025-01-13 01:22:03 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
21 lines
462 B
C
21 lines
462 B
C
/* $Id$
|
|
*
|
|
* 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 */
|