Changeset 2798
- Timestamp:
- Feb 15, 2000, 8:06:12 PM (26 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
-
include/cpuhlp.h (modified) (2 diffs)
-
src/kernel32/KERNEL32.DEF (modified) (2 diffs)
-
src/kernel32/cpuhlp.asm (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/cpuhlp.h
r2615 r2798 1 /* $Id: cpuhlp.h,v 1. 1 2000-02-03 19:04:01sandervl Exp $ */1 /* $Id: cpuhlp.h,v 1.2 2000-02-15 19:04:43 sandervl Exp $ */ 2 2 3 3 #ifndef _CPUHLP_H_ … … 24 24 #define CPUID_MMX BIT(23) 25 25 26 BOOL SupportsCPUID();26 BOOL _cdecl SupportsCPUID(); 27 27 28 void GetCPUVendorString(char *vendor);29 DWORD GetCPUFeatures();30 DWORD GetCPUSignature();28 void _cdecl GetCPUVendorString(char *vendor); 29 DWORD _cdecl GetCPUFeatures(); 30 DWORD _cdecl GetCPUSignature(); 31 31 32 32 void InitSystemInfo(int nrcpus); -
trunk/src/kernel32/KERNEL32.DEF
r2678 r2798 1 ; $Id: KERNEL32.DEF,v 1.7 0 2000-02-07 22:36:15sandervl Exp $1 ; $Id: KERNEL32.DEF,v 1.71 2000-02-15 19:06:12 sandervl Exp $ 2 2 3 3 ;Created by BLAST for IBM's compiler … … 1073 1073 IsExeStarted__Fv @2001 1074 1074 CheckCurFS @2002 1075 SupportsCPUID @20031076 GetCPUFeatures @20041075 _SupportsCPUID @2003 1076 _GetCPUFeatures @2004 1077 1077 CPUFeatures @2005 1078 1078 -
trunk/src/kernel32/cpuhlp.asm
r2613 r2798 1 ; $Id: cpuhlp.asm,v 1. 2 2000-02-03 18:56:39sandervl Exp $1 ; $Id: cpuhlp.asm,v 1.3 2000-02-15 19:06:12 sandervl Exp $ 2 2 3 3 ;/* … … 21 21 CODE32 SEGMENT DWORD PUBLIC USE32 'CODE' 22 22 23 public SupportsCPUID23 public _SupportsCPUID 24 24 25 SupportsCPUID proc near25 _SupportsCPUID proc near 26 26 pushfd 27 27 push ecx … … 46 46 popfd 47 47 ret 48 SupportsCPUID endp48 _SupportsCPUID endp 49 49 50 public GetCPUVendorString50 public _GetCPUVendorString 51 51 52 GetCPUVendorString proc near52 _GetCPUVendorString proc near 53 53 push ebp 54 54 mov ebp, esp … … 72 72 pop ebp 73 73 ret 74 GetCPUVendorString endp74 _GetCPUVendorString endp 75 75 76 public GetCPUFeatures77 GetCPUFeatures proc near76 public _GetCPUFeatures 77 _GetCPUFeatures proc near 78 78 push ebx 79 79 push ecx … … 91 91 pop ebx 92 92 ret 93 GetCPUFeatures endp93 _GetCPUFeatures endp 94 94 95 public GetCPUSignature96 GetCPUSignature proc near95 public _GetCPUSignature 96 _GetCPUSignature proc near 97 97 push ebx 98 98 push ecx … … 106 106 pop ebx 107 107 ret 108 GetCPUSignature endp108 _GetCPUSignature endp 109 109 110 110
Note:
See TracChangeset
for help on using the changeset viewer.
