- Timestamp:
- Mar 31, 2002, 10:09:22 PM (24 years ago)
- Location:
- branches/splittup/src/win32k
- Files:
-
- 51 added
- 13 deleted
- 4 edited
-
Xx2Lx.def (deleted)
-
Xx2Lx.mak (deleted)
-
api (deleted)
-
calltrees.txt (deleted)
-
configure.cmd (modified) (6 diffs)
-
dev16 (deleted)
-
dev32 (deleted)
-
elf2lx (deleted)
-
history.txt (deleted)
-
k32 (deleted)
-
ldr (deleted)
-
misc (deleted)
-
mmf (deleted)
-
pe2lx (deleted)
-
src (added)
-
src/ModuleBase.cpp (added)
-
src/Xx2Lx.def (added)
-
src/Xx2Lx.mak (added)
-
src/api.cpp (added)
-
src/d16globl.c (added)
-
src/d16init.c (added)
-
src/d16strat.c (added)
-
src/d32CallGate.asm (added)
-
src/d32Events.asm (added)
-
src/d32Win32kIOCtl.c (added)
-
src/d32Win32kOpenClose.c (added)
-
src/d32globals.c (added)
-
src/d32init.c (added)
-
src/devfirst.asm (added)
-
src/devlast.asm (added)
-
src/elf2lx.cpp (added)
-
src/k32AllocMemEx.cpp (added)
-
src/k32HandleSystemEvent.cpp (added)
-
src/k32KillProcessEx.cpp (added)
-
src/k32ProcessReadWrite.cpp (added)
-
src/k32QueryCallGate.cpp (added)
-
src/k32QueryOTEs.cpp (added)
-
src/k32QueryOptionsStatus.cpp (added)
-
src/k32QuerySystemMemInfo.cpp (added)
-
src/k32SendSystemEvent.cpp (added)
-
src/k32SetEnvironment.cpp (added)
-
src/k32SetOptions.cpp (added)
-
src/ldr.cpp (added)
-
src/mmf.cpp (added)
-
src/myLDRGetProcAddr.cpp (added)
-
src/myLDRQAppType.cpp (added)
-
src/myVMAllocMem.cpp (added)
-
src/myVR32AllocMem.asm (added)
-
src/myldrCheckInternalName.cpp (added)
-
src/myldrClose.cpp (added)
-
src/myldrEnum32bitRelRecs.cpp (added)
-
src/myldrFindModule.cpp (added)
-
src/myldrGetFileName.asm (added)
-
src/myldrOpen.cpp (added)
-
src/myldrOpenPath.cpp (added)
-
src/myldrOpenPatha.asm (added)
-
src/myldrRead.cpp (added)
-
src/myldrSetVMflags.cpp (added)
-
src/myldrWasLoadModuled.cpp (added)
-
src/mytkExecPgm.asm (added)
-
src/mytkStartProcess.asm (added)
-
src/pe2lx.cpp (added)
-
src/xx2lxmain.cpp (added)
-
test/PrfTstProcess.mak (modified) (2 diffs)
-
tools (added)
-
tools/elfdumper.cpp (added)
-
win32k.tools.mk (modified) (2 diffs)
-
win32ktst.def (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/splittup/src/win32k/configure.cmd
r6841 r8149 1 /* $Id: configure.cmd,v 1.21.2. 1 2001-09-27 03:08:06bird Exp $1 /* $Id: configure.cmd,v 1.21.2.2 2002-03-31 20:08:45 bird Exp $ 2 2 * 3 3 * Configuration script. 4 4 * Generates makefile.inc and an empty .depend file. 5 5 * 6 * Copyright (c) 1999-200 1 knut st. osmundsen (knut.stange.osmundsen@mynd.no)6 * Copyright (c) 1999-2002 knut st. osmundsen (bird@anduin.net) 7 7 * 8 8 * Project Odin Software License can be found in LICENSE.TXT … … 37 37 when (ch = '?' | ch = 'H' | substr(sArg, 1, 2) = '-H') then 38 38 do 39 say 'Odin32 Configure.cmd. $Revision: 1.21.2. 1$.'39 say 'Odin32 Configure.cmd. $Revision: 1.21.2.2 $.' 40 40 say 'syntax: Configure.cmd [-n] [-w]' 41 41 say ' -n Noninteractive.' 42 say ' -w Don''t build Win32k .'42 say ' -w Don''t build Win32k nor kKrnlLib.' 43 43 say ' -h This text.' 44 44 exit(1); … … 63 63 call lineout sIncFile, '# Generated by 'directory()'\configure.cmd' 64 64 call lineout sIncFile, '################################################################################' 65 call lineout sIncFile, '' 66 call lineout sIncFile, '################################################################################' 67 call lineout sIncFile, '# BASE DIRECTORIES - Win32K' 68 call lineout sIncFile, '# Note! These should be absolute paths!' 69 call lineout sIncFile, '################################################################################' 70 sWin32kBase = directory(); 71 call lineout sIncFile, 'WIN32KBASE =' sWin32kBase; 72 call lineout sIncFile, 'WIN32KDEV16 =' sWin32kBase'\dev16' 73 call lineout sIncFile, 'WIN32KDEV32 =' sWin32kBase'\dev32' 74 call lineout sIncFile, 'WIN32KELF2LX =' sWin32kBase'\elf2lx' 75 call lineout sIncFile, 'WIN32KINCLUDE =' sWin32kBase'\include' 76 call lineout sIncFile, 'KKRNLLIBINCLUDE =' sWin32kBase'\kKrnlLib\include' 77 call lineout sIncFile, 'WIN32KK32 =' sWin32kBase'\k32' 78 call lineout sIncFile, 'WIN32KLDR =' sWin32kBase'\ldr' 79 call lineout sIncFile, 'WIN32KLIB =' sWin32kBase'\lib' 80 call lineout sIncFile, 'WIN32KMISC =' sWin32kBase'\misc' 81 call lineout sIncFile, 'WIN32KPE2LX =' sWin32kBase'\pe2lx' 82 call lineout sIncFile, '!ifdef DEBUG' 83 call lineout sIncFile, 'WIN32KBIN =' sWin32kBase'\bin\debug.$(CCENV)' 84 call lineout sIncFile, 'WIN32KLIST =' sWin32kBase'\list\debug.$(CCENV)' 85 call lineout sIncFile, 'WIN32KOBJ =' sWin32kBase'\object\debug.$(CCENV)' 86 call lineout sIncFile, '!else' 87 call lineout sIncFile, 'WIN32KBIN =' sWin32kBase'\bin\release.$(CCENV)' 88 call lineout sIncFile, 'WIN32KLIST =' sWin32kBase'\list\release.$(CCENV)' 89 call lineout sIncFile, 'WIN32KOBJ =' sWin32kBase'\object\release.$(CCENV)' 90 call lineout sIncFile, '!endif' 91 call lineout sIncFile, 'WIN32KOBJECT = $(WIN32KOBJ)' 92 call lineout sIncFile, '' 93 94 call lineout sIncFile, '################################################################################' 95 call lineout sIncFile, '# DDKPATH: base directory of ddk base (i.e. \DDK\BASE not \DDK for DDK v4.0+).' 65 call lineout sIncFile, 'PATH_WIN32K =' directory(); 66 call lineout sIncFile, 'PATH_KKRNLLIB =' directory()'\kKrnlLib'; 67 call lineout sIncFile, '' 68 69 call lineout sIncFile, '################################################################################' 70 call lineout sIncFile, '# Base directory of the DDK (i.e. \DDK\BASE not \DDK for DDK v4.0+).' 96 71 call lineout sIncFile, '################################################################################' 97 72 sDDK = SearchPaths('INCLUDE', '..\h\dhcalls.h', 'PATH', '..\h\dhcalls.h', 'BOOKSHELF', '..\base\.\h\dhcalls.h', 'Path to DDK "\BASE" directory (i.e. F:\DDK\BASE):'); 98 73 sDDK = ValidatePath(sDDK, 'h\devhdr.h', 'DDK Base Path'); 99 call lineout sIncFile, ' DDKPATH=' sDDK74 call lineout sIncFile, 'PATH_DDKBASE =' sDDK 100 75 call lineout sIncFile, '' 101 76 … … 105 80 sTLKT = SearchPaths('INCLUDE', '..\h\os2.h', 'PATH', '..\h\os2.h', 'BOOKSHELF', '..\h\os2.h', 'Path to OS/2 Toolkit directory:'); 106 81 sTLKT = ValidatePath(sTLKT, 'h\bsememf.h', 'OS/2 Toolkit Path'); 107 call lineout sIncFile, ' TOOLKIT=' sTLKT82 call lineout sIncFile, 'PATH_TOOLKIT =' sTLKT 108 83 call lineout sIncFile, '' 109 84 … … 117 92 sVA = SearchPaths('PATH', '..\bin\icc.exe', 'BOOKSHELF', '..\bin\icc.exe', 'Path to IBM VisualAge for C++ or IBM C and C++ Compilers, and set its environment you compile:'); 118 93 sVA = ValidatePath(sVA, 'bin\icc.exe', 'VisualAge Path'); 119 call lineout sIncFile, ' VACPATH=' sVA94 call lineout sIncFile, 'PATH_VAC =' sVA 120 95 call lineout sIncFile, '' 121 96 … … 125 100 sMSC = SearchPaths('PATH', '..\binp\c3l.exe', 'INCLUDE', '..\binp\c3l.exe','LIB', '..\binp\c3l.exe', 'Path to Microsoft C v6.0, v6.0a or v7.0 directory:'); 126 101 sMSC = ValidatePath(sMSC, 'binp\cl.exe', 'Microsoft C Path'); 127 call lineout sIncFile, 'MSCPATH =' sMSC 128 call lineout sIncFile, '' 129 130 call lineout sIncFile, '################################################################################' 131 call lineout sIncFile, '# Grep' 132 call lineout sIncFile, '################################################################################' 133 sGrep = SearchPaths('PATH', 'grep.exe', 'Path to UNIX-like grep utility which supports -v.'); 134 if (sGrep <> '') then 135 call lineout sIncFile, 'GREP =' sGrep || '\grep.exe' 102 call lineout sIncFile, 'PATH_MSC =' sMSC 136 103 call lineout sIncFile, '' 137 104 138 105 call stream sIncFile, 'c', 'close'; 139 140 /*141 * Create output directories.142 */143 '@mkdir Bin > nul 2> nul'144 '@mkdir Bin\Release.vac3 > nul 2> nul'145 '@mkdir Bin\Release.vac36 > nul 2> nul'146 '@mkdir Bin\Debug.vac3 > nul 2> nul'147 '@mkdir Bin\Debug.vac36 > nul 2> nul'148 149 '@mkdir List > nul 2> nul'150 '@mkdir List\Release.vac3 > nul 2> nul'151 '@mkdir List\Release.vac36 > nul 2> nul'152 '@mkdir List\Debug.vac3 > nul 2> nul'153 '@mkdir List\Debug.vac36 > nul 2> nul'154 155 '@mkdir Object > nul 2> nul'156 '@mkdir Object\Debug.vac3 > nul 2> nul'157 '@mkdir Object\Debug.vac36 > nul 2> nul'158 '@mkdir Object\Release.vac3 > nul 2> nul'159 '@mkdir Object\Release.vac36 > nul 2> nul'160 106 161 107 /* -
branches/splittup/src/win32k/test/PrfTstProcess.mak
r6404 r8149 1 # $Id: PrfTstProcess.mak,v 1.1 2001-07-30 00:43:19bird Exp $1 # $Id: PrfTstProcess.mak,v 1.1.4.1 2002-03-31 20:09:22 bird Exp $ 2 2 3 3 # … … 21 21 !include ..\..\..\makefile.inc 22 22 23 LD2TARGETFLAGS = $(LD2TARGETFLAGS) /pmtype:vio 23 24 24 25 # -
branches/splittup/src/win32k/win32k.tools.mk
r7750 r8149 1 # $Id: win32k.tools.mk,v 1.10.2. 7 2002-01-09 00:52:37bird Exp $1 # $Id: win32k.tools.mk,v 1.10.2.8 2002-03-31 20:08:45 bird Exp $ 2 2 3 3 # … … 182 182 183 183 {dev32}.asm{$(WIN32KOBJ)}.obj: 184 @$(CMDQD_SUB) @$(ECHO) assembling dev32: $(SOURCEFILE) & $(ASMCOMPILE)184 $(CMDQD_SUB) $(ECHO) assembling dev32: $(SOURCEFILE) & $(ASMCOMPILE) 185 185 {dev32}.asm.obj: 186 @$(CMDQD_SUB) @$(ECHO) assembling dev32: $(SOURCEFILE) & $(ASMCOMPILE)186 $(CMDQD_SUB) $(ECHO) assembling dev32: $(SOURCEFILE) & $(ASMCOMPILE) 187 187 188 188 {dev32}.c{$(WIN32KOBJ)}.obj: -
branches/splittup/src/win32k/win32ktst.def
r5247 r8149 36 36 BSS32 class 'BSS' 37 37 38 'STACK' CLASS 'STACK' STACK 39 38 40 IMPORTS 39 41 _DosWrite = DOSCALL1.282
Note:
See TracChangeset
for help on using the changeset viewer.
