[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:
Hermès Bélusca-Maïto 2012-09-27 18:44:50 +00:00
parent c930d17a3c
commit 779ce9effe
7 changed files with 12 additions and 8 deletions

View file

@ -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)

View file

@ -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>

View file

@ -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)
*/ */

View file

@ -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)
*/ */

View file

@ -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

View file

@ -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)

View file

@ -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>