Ignore:
Timestamp:
Nov 2, 2011, 11:13:48 PM (14 years ago)
Author:
dmik
Message:

Use underscores for symbols defined in .asm as they are cdecl.

IBM VAC seemed to detect they are ASM and not use underscores
when referencing them from C.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gcc-kmk/src/kernel32/asmutil.h

    r9946 r21783  
    1414#endif
    1515
    16 ULONG  getEAX();
    17 ULONG  getEBX();
    18 ULONG  getESP();
    19 USHORT getSS();
    20 USHORT getDS();
    21 USHORT getCS();
    22 USHORT getSS();
    23 USHORT getES();
    24 USHORT getFS();
    25 USHORT getGS();
     16ULONG  CDECL getEAX();
     17ULONG  CDECL getEBX();
     18ULONG  CDECL getESP();
     19USHORT CDECL getSS();
     20USHORT CDECL getDS();
     21USHORT CDECL getCS();
     22USHORT CDECL getSS();
     23USHORT CDECL getES();
     24USHORT CDECL getFS();
     25USHORT CDECL getGS();
    2626
    2727void CDECL Mul32x32to64(PVOID result, DWORD op1, DWORD op2);
Note: See TracChangeset for help on using the changeset viewer.