Changeset 6747 for trunk/src


Ignore:
Timestamp:
Sep 18, 2001, 6:33:01 AM (24 years ago)
Author:
bird
Message:

New Org* ordinal scheme. Fixed some init bugs as well.

Location:
trunk/src/win32k/kKrnlLib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/win32k/kKrnlLib/Makefile

    r6740 r6747  
    1 # $Id: Makefile,v 1.8 2001-09-17 02:27:54 bird Exp $
     1# $Id: Makefile,v 1.9 2001-09-18 04:33:00 bird Exp $
    22
    33#
     
    7474    $(WIN32KOBJ)\devlast.obj
    7575
     76LASTLIB = $(WIN32KOBJ)\lastlib.lib
     77
    7678LIBS =\
    7779    $(VACPATH)\lib\$(RTLLIB_NRE) \
     
    9193                            $(LIBS) \
    9294                            $(WIN32KOBJ)\$(NAME)bldlevel.def \
    93                             $(LASTOBJ) \
     95                            $(LASTLIB) \
    9496                            $(LIBSINIT) \
    9597                            $(WIN32KOBJ)\$(@B).lnk \
     
    122124$(LIBS:  =^
    123125)
    124 $(LASTOBJ)
     126$(LASTLIB)
    125127$(WIN32KOBJ)\$(NAME)bldlevel.def
    126128<<KEEP
     
    132134        -V"#define=ODIN32_VERSION,$(ODIN32_INCLUDE)\odinbuild.h" \
    133135        -M"#define=ODIN32_BUILD_NR,$(ODIN32_INCLUDE)\odinbuild.h"
     136
     137# Last lib - needed to get LASTOBJ in after the importlibraries.
     138$(LASTLIB): $(LASTOBJ)
     139    -@$(RM) $@ > nul 2> nul
     140    $(ILIB) $@ $**;
    134141
    135142
     
    184191TSTLASTOBJ = $(LASTOBJ)
    185192
     193TSTLASTLIB = $(WIN32KOBJ)\tstlastlib.lib
     194
    186195TSTLIBS = $(LIBS)
    187196
     
    199208                                $(TSTOBJS:. = ) \
    200209                                $(TSTLIBS) \
    201                                 $(TSTLASTOBJ) \
     210                                $(TSTLASTLIB) \
    202211                                $(WIN32KOBJ)\$(@B).lnk \
    203212                                Makefile makefile.inc ..\..\..\makefile.inc
     
    220229$(TSTLIBS:  =^
    221230)
    222 $(TSTLASTOBJ)
     231$(TSTLASTLIB)
    223232$(NAME)tst.def
    224233<<KEEP
    225234
     235# Last lib - needed to get LASTOBJ in after the importlibraries.
     236$(TSTLASTLIB): $(TSTLASTOBJ)
     237    -@$(RM) $@ > nul 2> nul
     238    $(ILIB) $@ $**;
    226239
    227240
  • trunk/src/win32k/kKrnlLib/include/probkrnl.h

    r6729 r6747  
    1 /* $Id: probkrnl.h,v 1.3 2001-09-17 00:11:36 bird Exp $
     1/* $Id: probkrnl.h,v 1.4 2001-09-18 04:33:01 bird Exp $
    22 *
    33 * Include file for ProbKrnl.
     
    100100#define EXP_VAR16       7
    101101#define EXP_PROC16      8
     102#define EXP_ORGPROC32   9
     103#define EXP_ORGPROC16   10
    102104
    103105
Note: See TracChangeset for help on using the changeset viewer.