mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 07:56:59 +00:00
[CSRSS/CSRSRV]
- Do not compile anymore the old CSRSS. - Update some headers and resource files. - Add header guards in srv.h svn path=/trunk/; revision=57402
This commit is contained in:
parent
c930d17a3c
commit
779ce9effe
7 changed files with 12 additions and 8 deletions
|
@ -1,5 +1,4 @@
|
||||||
if(ARCH STREQUAL "i386")
|
if(ARCH STREQUAL "i386")
|
||||||
add_subdirectory(ntvdm)
|
add_subdirectory(ntvdm)
|
||||||
endif()
|
endif()
|
||||||
add_subdirectory(csr)
|
|
||||||
add_subdirectory(win32)
|
add_subdirectory(win32)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#define REACTOS_VERSION_DLL
|
#define REACTOS_VERSION_DLL
|
||||||
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS CSR Core Server\0"
|
#define REACTOS_STR_FILE_DESCRIPTION "Client/Server Runtime SubSystem Process\0"
|
||||||
#define REACTOS_STR_INTERNAL_NAME "csrsrv\0"
|
#define REACTOS_STR_INTERNAL_NAME "csrsrv\0"
|
||||||
#define REACTOS_STR_ORIGINAL_FILENAME "csrsrv.dll\0"
|
#define REACTOS_STR_ORIGINAL_FILENAME "csrsrv.dll\0"
|
||||||
#include <reactos/version.rc>
|
#include <reactos/version.rc>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS CSR Sub System
|
* PROJECT: ReactOS CSR Sub System
|
||||||
* FILE: subsys/csr/csrsrv/server.c
|
* FILE: subsystems/win32/csrss/csrsrv/server.c
|
||||||
* PURPOSE: CSR Server DLL Server Functions
|
* PURPOSE: CSR Server DLL Server Functions
|
||||||
* PROGRAMMERS: Alex Ionescu (alex@relsoft.net)
|
* PROGRAMMERS: Alex Ionescu (alex@relsoft.net)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS CSR Sub System
|
* PROJECT: ReactOS CSR Sub System
|
||||||
* FILE: subsys/csr/csrsrv/session.c
|
* FILE: subsystems/win32/csrss/csrsrv/session.c
|
||||||
* PURPOSE: CSR Server DLL Session Implementation
|
* PURPOSE: CSR Server DLL Session Implementation
|
||||||
* PROGRAMMERS: Alex Ionescu (alex@relsoft.net)
|
* PROGRAMMERS: Alex Ionescu (alex@relsoft.net)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
#ifndef _SRV_H
|
||||||
|
#define _SRV_H
|
||||||
|
|
||||||
/* PSDK/NDK Headers */
|
/* PSDK/NDK Headers */
|
||||||
#define NTOS_MODE_USER
|
#define NTOS_MODE_USER
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
@ -35,3 +38,5 @@ extern HANDLE CsrHeap;
|
||||||
/* Defines */
|
/* Defines */
|
||||||
#define ROUND_UP(n, align) ROUND_DOWN(((ULONG)n) + (align) - 1, (align))
|
#define ROUND_UP(n, align) ROUND_DOWN(((ULONG)n) + (align) - 1, (align))
|
||||||
#define ROUND_DOWN(n, align) (((ULONG)n) & ~((align) - 1l))
|
#define ROUND_DOWN(n, align) (((ULONG)n) & ~((align) - 1l))
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS CSR Sub System
|
* PROJECT: ReactOS CSR Sub System
|
||||||
* FILE: subsys/csr/csrsrv/wait.c
|
* FILE: subsystems/win32/csrss/csrsrv/wait.c
|
||||||
* PURPOSE: CSR Server DLL Wait Implementation
|
* PURPOSE: CSR Server DLL Wait Implementation
|
||||||
* PROGRAMMERS: Emanuele Aliberti
|
* PROGRAMMERS: Emanuele Aliberti
|
||||||
* Alex Ionescu (alex@relsoft.net)
|
* Alex Ionescu (alex@relsoft.net)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#define REACTOS_STR_FILE_DESCRIPTION "Client/Server Runtime Process\0"
|
#define REACTOS_STR_FILE_DESCRIPTION "Client/Server Runtime SubSystem Process\0"
|
||||||
#define REACTOS_STR_INTERNAL_NAME "CSRSs and CSRSrv\0"
|
#define REACTOS_STR_INTERNAL_NAME "csrss\0"
|
||||||
#define REACTOS_STR_ORIGINAL_FILENAME "CSRSs.exe and CSRSrv.dll\0"
|
#define REACTOS_STR_ORIGINAL_FILENAME "csrss.exe\0"
|
||||||
#include <reactos/version.rc>
|
#include <reactos/version.rc>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue