Additional modifications

svn path=/trunk/; revision=1070
This commit is contained in:
Jason Filby 2000-03-17 21:49:32 +00:00
parent d9d3272dc6
commit c404283ff4
2 changed files with 4 additions and 27 deletions

View file

@ -1,4 +1,4 @@
# $Id: makefile,v 1.18 2000/03/11 00:51:36 ea Exp $ # $Id: makefile,v 1.19 2000/03/17 21:49:32 jfilby Exp $
# #
# WIN32K.SYS build spec # WIN32K.SYS build spec
# #
@ -7,7 +7,9 @@ TARGET=win32k
BASE_CFLAGS = -I../../include BASE_CFLAGS = -I../../include
ENG_OBJECTS= eng/debug.o eng/mem.o ENG_OBJECTS= eng/debug.o eng/mem.o eng/brush.o eng/bitblt.o eng/clip.o eng/copybits.o \
eng/device.o eng/handle.o eng/lineto.o eng/paint.o eng/palette.o \
eng/surface.o eng/xlate.o
MAIN_OBJECTS = main/dllmain.o MAIN_OBJECTS = main/dllmain.o
MISC_OBJECTS = misc/driver.o MISC_OBJECTS = misc/driver.o
LDR_OBJECTS = ldr/loader.o LDR_OBJECTS = ldr/loader.o

View file

@ -7,43 +7,25 @@
#define STUB(x) void x(void) { DbgPrint("WIN32K: Stub for %s\n", #x); } #define STUB(x) void x(void) { DbgPrint("WIN32K: Stub for %s\n", #x); }
STUB(BRUSHOBJ_pvAllocRbrush)
STUB(BRUSHOBJ_pvGetRbrush)
STUB(BRUSHOBJ_ulGetBrushColor) STUB(BRUSHOBJ_ulGetBrushColor)
STUB(CLIPOBJ_bEnum)
STUB(CLIPOBJ_cEnumStart)
STUB(CLIPOBJ_ppoGetPath) STUB(CLIPOBJ_ppoGetPath)
STUB(EngAcquireSemaphore) STUB(EngAcquireSemaphore)
STUB(EngAllocMem) STUB(EngAllocMem)
STUB(EngAllocUserMem) STUB(EngAllocUserMem)
STUB(EngAssociateSurface)
STUB(EngBitBlt)
STUB(EngCheckAbort) STUB(EngCheckAbort)
STUB(EngComputeGlyphSet) STUB(EngComputeGlyphSet)
STUB(EngCopyBits)
STUB(EngCreateBitmap)
STUB(EngCreateClip)
STUB(EngCreateDeviceBitmap)
STUB(EngCreateDeviceSurface)
STUB(EngCreateDriverObj) STUB(EngCreateDriverObj)
STUB(EngCreateEvent) STUB(EngCreateEvent)
STUB(EngCreatePalette)
STUB(EngCreatePath) STUB(EngCreatePath)
STUB(EngCreateSemaphore) STUB(EngCreateSemaphore)
STUB(EngCreateWnd) STUB(EngCreateWnd)
STUB(EngDebugBreak) STUB(EngDebugBreak)
STUB(EngDebugPrint)
STUB(EngDeleteClip)
STUB(EngDeleteDriverObj) STUB(EngDeleteDriverObj)
STUB(EngDeleteEvent) STUB(EngDeleteEvent)
STUB(EngDeletePalette)
STUB(EngDeletePath) STUB(EngDeletePath)
STUB(EngDeleteSemaphore) STUB(EngDeleteSemaphore)
STUB(EngDeleteSurface)
STUB(EngDeleteWnd) STUB(EngDeleteWnd)
STUB(EngDeviceIoControl)
STUB(EngEnumForms) STUB(EngEnumForms)
STUB(EngEraseSurface)
STUB(EngFillPath) STUB(EngFillPath)
STUB(EngFindImageProcAddress) STUB(EngFindImageProcAddress)
STUB(EngFindResource) STUB(EngFindResource)
@ -61,11 +43,9 @@ STUB(EngGetPrinterData)
STUB(EngGetPrinterDataFileName) STUB(EngGetPrinterDataFileName)
STUB(EngGetProcessHandle) STUB(EngGetProcessHandle)
STUB(EngGetType1FontList) STUB(EngGetType1FontList)
STUB(EngLineTo)
STUB(EngLoadModule) STUB(EngLoadModule)
STUB(EngLoadModuleForWrite) STUB(EngLoadModuleForWrite)
STUB(EngLockDriverObj) STUB(EngLockDriverObj)
STUB(EngLockSurface)
STUB(EngMapEvent) STUB(EngMapEvent)
STUB(EngMapFontFile) STUB(EngMapFontFile)
STUB(EngMapModule) STUB(EngMapModule)
@ -74,7 +54,6 @@ STUB(EngMovePointer)
STUB(EngMulDiv) STUB(EngMulDiv)
STUB(EngMultiByteToUnicodeN) STUB(EngMultiByteToUnicodeN)
STUB(EngMultiByteToWideChar) STUB(EngMultiByteToWideChar)
STUB(EngPaint)
STUB(EngProbeForRead) STUB(EngProbeForRead)
STUB(EngProbeForReadAndWrite) STUB(EngProbeForReadAndWrite)
STUB(EngQueryLocalTime) STUB(EngQueryLocalTime)
@ -140,7 +119,6 @@ STUB(FONTOBJ_pxoGetXform)
STUB(FONTOBJ_vGetInfo) STUB(FONTOBJ_vGetInfo)
STUB(HT_ComputeRGBGammaTable) STUB(HT_ComputeRGBGammaTable)
STUB(HT_Get8BPPFormatPalette) STUB(HT_Get8BPPFormatPalette)
STUB(PALOBJ_cGetColors)
STUB(PATHOBJ_bCloseFigure) STUB(PATHOBJ_bCloseFigure)
STUB(PATHOBJ_bEnum) STUB(PATHOBJ_bEnum)
STUB(PATHOBJ_bEnumClipLines) STUB(PATHOBJ_bEnumClipLines)
@ -167,9 +145,6 @@ STUB(WNDOBJ_vSetConsumer)
STUB(XFORMOBJ_bApplyXform) STUB(XFORMOBJ_bApplyXform)
STUB(XFORMOBJ_iGetFloatObjXform) STUB(XFORMOBJ_iGetFloatObjXform)
STUB(XFORMOBJ_iGetXform) STUB(XFORMOBJ_iGetXform)
STUB(XLATEOBJ_cGetPalette)
STUB(XLATEOBJ_iXlate)
STUB(XLATEOBJ_piVector)
STUB(_abnormal_termination) STUB(_abnormal_termination)
STUB(_except_handler2) STUB(_except_handler2)
STUB(_global_unwind2) STUB(_global_unwind2)