Changeset 155 for trunk/src


Ignore:
Timestamp:
Jun 22, 1999, 6:18:14 PM (26 years ago)
Author:
phaller
Message:

Add: added c-runtime functions to NTDLL

Location:
trunk/src/NTDLL
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/NTDLL/makefile

    r46 r155  
    1 # $Id: makefile,v 1.3 1999-06-07 20:57:55 sandervl Exp $
     1# $Id: makefile,v 1.4 1999-06-22 16:18:14 phaller Exp $
    22
    33#
     
    1919
    2020
    21 OBJS = NTDLL.obj   \
    22        file.obj    \
    23        nt.obj      \
    24        om.obj      \
    25        reg.obj     \
    26        rtl.obj     \
    27        rtlstr.obj  \
    28        sec.obj     \
    29        sync.obj    \
    30        initterm.obj \
     21OBJS = NTDLL.obj\
     22       file.obj\
     23       nt.obj\
     24       om.obj\
     25       reg.obj\
     26       rtl.obj\
     27       rtlstr.obj\
     28       sec.obj\
     29       sync.obj\
     30       initterm.obj\
     31       crt.obj\
    3132       time.obj
    3233
     
    7071initterm.obj: .\initterm.cpp
    7172
     73crt.obj:    .\crt.cpp    .\ntdll.h
    7274
    7375clean:
  • trunk/src/NTDLL/ntdll.def

    r154 r155  
    1 ; $Id: ntdll.def,v 1.5 1999-06-22 15:38:02 phaller Exp $
     1; $Id: ntdll.def,v 1.6 1999-06-22 16:18:14 phaller Exp $
    22
    33;Created by BLAST for IBM's compiler
     
    278278    RtlTimeToElapsedTimeFields    = _RtlTimeToElapsedTimeFields@8
    279279
     280
     281; NTDLL's C runtime
     282; Note: CDECL does not decorate the function names with parameter bytes!
     283    strcat                        = _OS2strcat                        @914
     284    strchr                        = _OS2strchr                        @915
     285    strcmp                        = _OS2strcmp                        @916
     286    strcpy                        = _OS2strcpy                        @917
     287    strcspn                       = _OS2strcspn                       @918
     288    strlen                        = _OS2strlen                        @919
     289    strncat                       = _OS2strcat                        @920
     290    strncmp                       = _OS2strncmp                       @921
     291    strncpy                       = _OS2strncpy                       @922
     292    strpbrk                       = _OS2strpbrk                       @923
     293    strrchr                       = _OS2strrchr                       @924
     294    strspn                        = _OS2strspn                        @925
     295    strstr                        = _OS2strstr                        @926
     296
Note: See TracChangeset for help on using the changeset viewer.