Changeset 2613 for trunk/src/kernel32
- Timestamp:
- Feb 3, 2000, 7:56:39 PM (26 years ago)
- Location:
- trunk/src/kernel32
- Files:
-
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/KERNEL32.DEF
r2554 r2613 1 ; $Id: KERNEL32.DEF,v 1.6 7 2000-01-29 10:42:37sandervl Exp $1 ; $Id: KERNEL32.DEF,v 1.68 2000-02-03 18:56:38 sandervl Exp $ 2 2 3 3 ;Created by BLAST for IBM's compiler … … 1073 1073 IsExeStarted__Fv @2001 1074 1074 CheckCurFS @2002 1075 SupportsCPUID @2003 1076 GetCPUFeatures @2004 1077 CPUFeatures @2005 1075 1078 1076 1079 GetDisplayCodepage__Fv @3000 1077 1080 GetWindowsCodepage__Fv @3001 1078 1081 1082 -
trunk/src/kernel32/cpu.cpp
r2044 r2613 1 /* $Id: cpu.cpp,v 1. 4 1999-12-09 11:59:27sandervl Exp $ */1 /* $Id: cpu.cpp,v 1.5 2000-02-03 18:56:39 sandervl Exp $ */ 2 2 /* 3 3 * Odin win32 CPU apis … … 20 20 #include "winreg.h" 21 21 #include "debugtools.h" 22 #include "cpuhlp.h"22 #include <cpuhlp.h> 23 23 #include "initsystem.h" 24 24 -
trunk/src/kernel32/cpuhlp.asm
r1815 r2613 1 ; $Id: cpuhlp.asm,v 1. 1 1999-11-23 19:31:35sandervl Exp $1 ; $Id: cpuhlp.asm,v 1.2 2000-02-03 18:56:39 sandervl Exp $ 2 2 3 3 ;/* … … 9 9 ; */ 10 10 .586 11 NAME except 11 NAME cpuhlp 12 13 DATA32 SEGMENT DWORD PUBLIC USE32 'DATA' 14 ASSUME DS:FLAT,SS:FLAT 15 16 PUBLIC CPUFeatures 17 CPUFeatures dd 0 18 19 DATA32 ENDS 12 20 13 21 CODE32 SEGMENT DWORD PUBLIC USE32 'CODE' … … 77 85 mov eax, edx 78 86 87 mov [CPUFeatures], eax 88 79 89 pop edx 80 90 pop ecx -
trunk/src/kernel32/makefile
r2311 r2613 1 # $Id: makefile,v 1. 79 2000-01-03 21:36:10sandervl Exp $1 # $Id: makefile,v 1.80 2000-02-03 18:56:39 sandervl Exp $ 2 2 3 3 # … … 162 162 163 163 initterm.OBJ: .\initterm.cpp initterm.h $(PDWIN32_INCLUDE)\heapshared.h mmap.h directory.h hmdevio.h initsystem.h $(PDWIN32_INCLUDE)\heapcode.h 164 initsystem.obj: initsystem.cpp cpuhlp.h initsystem.h $(PDWIN32_INCLUDE)\misc.h directory.h $(PDWIN32_INCLUDE)\versionos2.h164 initsystem.obj: initsystem.cpp $(PDWIN32_INCLUDE)\cpuhlp.h initsystem.h $(PDWIN32_INCLUDE)\misc.h directory.h $(PDWIN32_INCLUDE)\versionos2.h 165 165 166 166 … … 407 407 heapshared.obj: heapshared.cpp $(PDWIN32_INCLUDE)\heapshared.h 408 408 heapcode.obj: heapcode.cpp $(PDWIN32_INCLUDE)\heapshared.h $(PDWIN32_INCLUDE)\heapcode.h 409 cpu.obj: cpu.cpp cpuhlp.h409 cpu.obj: cpu.cpp $(PDWIN32_INCLUDE)\cpuhlp.h 410 410 cpuhlp.obj: cpuhlp.asm 411 411 environ.obj: environ.cpp $(PDWIN32_INCLUDE)\misc.h
Note:
See TracChangeset
for help on using the changeset viewer.