mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-27 19:25:36 +00:00
* lib/gdi32/misc/dllmain.c (GdiDllInitialize): Don't initialize win32k.sys for each process. * subsys/csrss/init.c (CsrServerInitialization): Initialize win32k.sys as well. 2002-08-26 David Welch <[email protected]> * ntoskrnl/ps/process.c (NtCreateProcess): Reference the parent process's handle using ExGetPreviousMode. 2002-08-26 David Welch <[email protected]> * lib/user32/misc/dllmain.c (Init): Initialize gdi32 as well. 2002-08-26 David Welch <[email protected]> * iface/addsys/genw32k.c (main, process): Generate a set of stubs for csrss as well. svn path=/trunk/; revision=3396
37 lines
502 B
Makefile
37 lines
502 B
Makefile
# $Id: makefile,v 1.16 2002/08/26 13:06:03 dwelch Exp $
|
|
|
|
PATH_TO_TOP = ../..
|
|
|
|
TARGET_TYPE = program
|
|
|
|
TARGET_APPTYPE = native
|
|
|
|
TARGET_NAME = csrss
|
|
|
|
TARGET_INSTALLDIR = system32
|
|
|
|
TARGET_CFLAGS = -D__NTAPP__
|
|
|
|
OBJECTS_API = \
|
|
api/process.o \
|
|
api/wapi.o \
|
|
api/conio.o \
|
|
api/handle.o
|
|
|
|
OBJECTS_MISC = \
|
|
$(TARGET_NAME).o \
|
|
init.o \
|
|
print.o \
|
|
video.o \
|
|
win32k.o
|
|
|
|
TARGET_OBJECTS = \
|
|
$(OBJECTS_API) \
|
|
$(OBJECTS_MISC)
|
|
|
|
include $(PATH_TO_TOP)/rules.mak
|
|
|
|
include $(TOOLS_PATH)/helper.mk
|
|
|
|
# EOF
|