Files
reactos/reactos/subsys/csrss/makefile
T
David Welch 024738024e 2002-08-26 David Welch <[email protected]>
* 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
2002-08-26 13:06:03 +00:00

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