mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 20:32:36 +00:00
d2aeaba5f8
Move CSRSS, CSRSRV there, as well as CSR client calls from NTDLL into a "CSRLIB" library.
30 lines
729 B
C
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 */
|