Changeset 2798 for trunk/src


Ignore:
Timestamp:
Feb 15, 2000, 8:06:12 PM (26 years ago)
Author:
sandervl
Message:

change assembly function calling convention

Location:
trunk/src/kernel32
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/KERNEL32.DEF

    r2678 r2798  
    1 ; $Id: KERNEL32.DEF,v 1.70 2000-02-07 22:36:15 sandervl Exp $
     1; $Id: KERNEL32.DEF,v 1.71 2000-02-15 19:06:12 sandervl Exp $
    22
    33;Created by BLAST for IBM's compiler
     
    10731073    IsExeStarted__Fv     @2001
    10741074    CheckCurFS           @2002
    1075     SupportsCPUID        @2003
    1076     GetCPUFeatures       @2004
     1075    _SupportsCPUID        @2003
     1076    _GetCPUFeatures       @2004
    10771077    CPUFeatures          @2005
    10781078
  • trunk/src/kernel32/cpuhlp.asm

    r2613 r2798  
    1 ; $Id: cpuhlp.asm,v 1.2 2000-02-03 18:56:39 sandervl Exp $
     1; $Id: cpuhlp.asm,v 1.3 2000-02-15 19:06:12 sandervl Exp $
    22
    33;/*
     
    2121CODE32          SEGMENT DWORD PUBLIC USE32 'CODE'
    2222
    23         public SupportsCPUID
     23        public _SupportsCPUID
    2424
    25 SupportsCPUID proc near
     25_SupportsCPUID proc near
    2626        pushfd
    2727        push    ecx
     
    4646        popfd
    4747        ret
    48 SupportsCPUID endp
     48_SupportsCPUID endp
    4949
    50         public GetCPUVendorString
     50        public _GetCPUVendorString
    5151
    52 GetCPUVendorString proc near
     52_GetCPUVendorString proc near
    5353        push    ebp
    5454        mov     ebp, esp
     
    7272        pop     ebp
    7373        ret
    74 GetCPUVendorString endp
     74_GetCPUVendorString endp
    7575
    76         public GetCPUFeatures
    77 GetCPUFeatures proc near
     76        public _GetCPUFeatures
     77_GetCPUFeatures proc near
    7878        push    ebx
    7979        push    ecx
     
    9191        pop     ebx
    9292        ret
    93 GetCPUFeatures endp
     93_GetCPUFeatures endp
    9494
    95         public GetCPUSignature
    96 GetCPUSignature proc near
     95        public _GetCPUSignature
     96_GetCPUSignature proc near
    9797        push    ebx
    9898        push    ecx
     
    106106        pop     ebx
    107107        ret
    108 GetCPUSignature endp
     108_GetCPUSignature endp
    109109
    110110
Note: See TracChangeset for help on using the changeset viewer.