reactos/subsystems/csr/csrlib/csrlib.h
Hermès Bélusca-Maïto d2aeaba5f8
[CSR][NTDLL] Move the CSR subsystem into its own "csr" sub-directory. (#4802)
Move CSRSS, CSRSRV there, as well as CSR client calls from NTDLL into a "CSRLIB" library.
2022-10-29 17:17:29 +02:00

30 lines
729 B
C

/*
* PROJECT: ReactOS Client/Server Runtime SubSystem
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
* PURPOSE: CSR Client Library - Main Header
* COPYRIGHT: Copyright 2022 Hermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
*/
#ifndef _CSRLIB_H_
#define _CSRLIB_H_
/* INCLUDES ******************************************************************/
/* PSDK/NDK Headers */
#define WIN32_NO_STATUS
//#include <windef.h>
#define NTOS_MODE_USER
#include <ndk/rtlfuncs.h>
/* CSRSS Headers */
#include <csr.h>
/* GLOBALS ********************************************************************/
extern HANDLE CsrApiPort;
extern HANDLE CsrPortHeap;
#endif /* _CSRLIB_H_ */
/* EOF */