Changeset 2177 for trunk/src/NTDLL


Ignore:
Timestamp:
Dec 21, 1999, 1:27:12 PM (26 years ago)
Author:
sandervl
Message:

all crt functions moved to crtdll

Location:
trunk/src/NTDLL
Files:
3 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/NTDLL/makefile

    r2159 r2177  
    1 # $Id: makefile,v 1.15 1999-12-20 11:47:01 sandervl Exp $
     1# $Id: makefile,v 1.16 1999-12-21 12:24:22 sandervl Exp $
    22
    33#
     
    3131       sync.obj\
    3232       initterm.obj\
    33        crt.obj\
    3433       time.obj\
    3534       unknown.obj\
    3635       arith64.obj\
    37        regfunc.obj qsort.obj
     36       regfunc.obj
    3837
    3938
     
    4443
    4544$(TARGET).dll: $(OBJS) $(TARGET).def
    46         $(LD) $(LDFLAGS) -Fm -Fe$@ $(OBJS) sbsstub.obj $(TARGET).def $(PDWIN32_LIB)\kernel32.lib $(PDWIN32_LIB)\user32.lib $(PDWIN32_LIB)/kernel32.lib $(PDWIN32_LIB)/odincrt.lib OS2386.LIB $(RTLLIB_O)
     45        $(LD) $(LDFLAGS) -Fm -Fe$@ $(OBJS) sbsstub.obj $(TARGET).def $(PDWIN32_LIB)\kernel32.lib $(PDWIN32_LIB)\user32.lib $(PDWIN32_LIB)/kernel32.lib $(PDWIN32_LIB)/crtdll.lib $(PDWIN32_LIB)/odincrt.lib OS2386.LIB $(RTLLIB_O)
    4746# PMWINX.LIB LIBULS.LIB LIBCONV.LIB
    4847        $(CP) $@ $(PDWIN32_BIN)
  • trunk/src/NTDLL/ntdll.def

    r2159 r2177  
    1 ; $Id: ntdll.def,v 1.30 1999-12-20 11:47:01 sandervl Exp $
     1; $Id: ntdll.def,v 1.31 1999-12-21 12:24:22 sandervl Exp $
    22
    33;Created by BLAST for IBM's compiler
     
    360360; Note: CDECL does not decorate the function names with parameter bytes!
    361361
    362     _CIpow                       = _NTDLL__CIpow                     @349
    363     _ftol                        = _NTDLL__ftol                      @864
    364     _ltoa                        = _NTDLL__ltoa                      @866
    365     _memicmp                     = _NTDLL__memicmp                   @868
    366     _snprintf                    = _NTDLL__snprintf                  @869
    367     _snwprintf                   = _NTDLL__snwprintf                 @870
    368     _splitpath                   = _NTDLL__splitpath                 @871
    369     _strcmpi                     = _NTDLL__strcmpi                   @872
    370     _strlwr                      = _NTDLL__strlwr                    @874
    371     _strnicmp                    = _NTDLL__strnicmp                  @875
    372     _strupr                      = _NTDLL__strupr                    @876
    373     _ultoa                       = _NTDLL__ultoa                     @877
    374     _vsnprintf                   = _NTDLL__vsnprintf                 @878
    375     _wcsicmp                      = _OS2_wcsicmp                      @879
    376     _wcslwr                       = _OS2_wcslwr                       @880
    377     _wcsnicmp                     = _OS2_wcsnicmp                     @881
    378     _wcsupr                       = _OS2_wcsupr                       @882
    379     abs                           = _OS2abs                           @883
    380     atan                          = _OS2atan                          @884
    381     atoi                          = _OS2atoi                          @885
    382     atol                          = _OS2atol                          @886
    383     ceil                          = _OS2ceil                          @887
    384     cos                           = _OS2cos                           @888
    385     fabs                          = _OS2fabs                          @889
    386     floor                         = _OS2floor                         @890
    387     isalpha                       = _OS2isalpha                       @891
    388     isdigit                       = _OS2isdigit                       @892
    389     islower                       = _OS2islower                       @893
    390     isprint                       = _OS2isprint                       @894
    391     isspace                       = _OS2isspace                       @895
    392     isupper                       = _OS2isupper                       @896
    393     iswalpha                     = _NTDLL_iswalpha                   @897
    394     iswctype                     = _NTDLL_iswctype                   @898
    395     isxdigit                     = _NTDLL_isxdigit                   @899
    396 
    397     labs                          = _NTDLL_labs                              @900
    398     log                           = _NTDLL_log                       @901
    399     mbstowcs                      = _NTDLL_mbstowcs                  @902
    400     memchr                        = _NTDLL_memchr                    @903
    401     memcmp                        = _NTDLL_memcmp                    @904
    402     memcpy                        = _NTDLL_memcpy                    @905
    403     memmove                       = _OS2memmove                              @906
    404     memset                        = _NTDLL_memset                    @907
    405     pow                           = _NTDLL_pow                       @908
    406     qsort                         = _qsort                           @909
    407     sin                           = _NTDLL_sin                       @910
    408     sprintf                       = _OS2sprintf                       @911
    409     sqrt                         = _NTDLL_sqrt                       @912
    410     sscanf                       = _NTDLL_sscanf                     @913
    411     strcat                        = _OS2strcat                        @914
    412     strchr                        = _OS2strchr                        @915
    413     strcmp                        = _OS2strcmp                        @916
    414     strcpy                        = _OS2strcpy                        @917
    415     strcspn                       = _OS2strcspn                       @918
    416     strlen                        = _OS2strlen                        @919
    417     strncat                       = _OS2strcat                        @920
    418     strncmp                       = _OS2strncmp                       @921
    419     strncpy                       = _OS2strncpy                       @922
    420     strpbrk                       = _OS2strpbrk                       @923
    421     strrchr                       = _OS2strrchr                       @924
    422     strspn                        = _OS2strspn                        @925
    423     strstr                        = _OS2strstr                        @926
    424     swprintf                      = _OS2swprintf                      @927
    425     tan                           = _OS2tan                           @928
    426     toupper                       = _OS2toupper                       @929
    427     tolower                       = _OS2tolower                       @930
    428     towlower                      = _OS2towlower                      @931
    429     towupper                      = _OS2towupper                      @932
    430     vsprintf                     = _NTDLL_vsprintf                   @933
    431     wcscat                        = _OS2wcscat                        @934
    432     wcschr                        = _OS2wcschr                        @935
    433     wcscmp                        = _OS2wcscmp                        @936
    434     wcscpy                        = _OS2wcscpy                        @937
    435     wcscspn                       = _OS2wcscspn
    436     wcslen                        = _OS2wcslen                        @939
    437     wcsncat                       = _OS2wcscat                        @940
    438     wcsncmp                       = _OS2wcsncmp                       @941
    439     wcsncpy                       = _OS2wcsncpy                       @942
    440     wcspbrk                       = _OS2wcspbrk                       @943
    441     wcsrchr                       = _OS2wcsrchr                       @944
    442     wcsspn                        = _OS2wcsspn                        @945
    443     wcsstr                        = _OS2wcsstr
    444     wcstok                        = _NTDLL_wcstok                     @947
    445     wcstol                        = _NTDLL_wcstol                     @948
    446     wcstombs                      = _NTDLL_wcstombs                   @949
    447     wcstoul                       = _NTDLL_wcstoul                    @950
    448 
    449     _wtoi                        = _NTDLL__wtoi                      @983
    450     _wtol                        = _NTDLL__wtol                      @984
    451 
    452     _stricmp                      = _OS2_stricmp
    453     _itoa                         = _OS2_itoa
    454     _itow                         = _OS2_itow
    455 
     362    _CIpow                        = _CRTDLL__CIpow                     @349
     363    _ftol                         = _CRTDLL__ftol                      @864
     364    _ltoa                         = _CRTDLL__ltoa                      @866
     365    _memicmp                      = _CRTDLL__memicmp                   @868
     366    _snprintf                     = _CRTDLL__snprintf                  @869
     367    _snwprintf                    = _CRTDLL__snwprintf                 @870
     368    _splitpath                    = _CRTDLL__splitpath                 @871
     369    _strcmpi                      = _CRTDLL__strcmpi                   @872
     370    _strlwr                       = _CRTDLL__strlwr                    @874
     371    _strnicmp                     = _CRTDLL__strnicmp                  @875
     372    _strupr                       = _CRTDLL__strupr                    @876
     373    _ultoa                        = _CRTDLL__ultoa                     @877
     374    _vsnprintf                    = _CRTDLL__vsnprintf                 @878
     375    _wcsicmp                      = _CRTDLL__wcsicmp                      @879
     376    _wcslwr                       = _CRTDLL__wcslwr                       @880
     377    _wcsnicmp                     = _CRTDLL__wcsnicmp                     @881
     378    _wcsupr                       = _CRTDLL__wcsupr                       @882
     379    abs                           = _CRTDLL_abs                           @883
     380    atan                          = _CRTDLL_atan                          @884
     381    atoi                          = _CRTDLL_atoi                          @885
     382    atol                          = _CRTDLL_atol                          @886
     383    ceil                          = _CRTDLL_ceil                          @887
     384    cos                           = _CRTDLL_cos                           @888
     385    fabs                          = _CRTDLL_fabs                          @889
     386    floor                         = _CRTDLL_floor                         @890
     387    isalpha                       = _CRTDLL_isalpha                       @891
     388    isdigit                       = _CRTDLL_isdigit                       @892
     389    islower                       = _CRTDLL_islower                       @893
     390    isprint                       = _CRTDLL_isprint                       @894
     391    isspace                       = _CRTDLL_isspace                       @895
     392    isupper                       = _CRTDLL_isupper                       @896
     393    iswalpha                      = _CRTDLL_iswalpha                   @897
     394    iswctype                      = _CRTDLL_iswctype                   @898
     395    isxdigit                      = _CRTDLL_isxdigit                   @899
     396
     397    labs                          = _CRTDLL_labs                              @900
     398    log                           = _CRTDLL_log                       @901
     399    mbstowcs                      = _CRTDLL_mbstowcs                  @902
     400    memchr                        = _CRTDLL_memchr                    @903
     401    memcmp                        = _CRTDLL_memcmp                    @904
     402    memcpy                        = _CRTDLL_memcpy                    @905
     403    memmove                       = _CRTDLL_memmove                              @906
     404    memset                        = _CRTDLL_memset                    @907
     405    pow                           = _CRTDLL_pow                       @908
     406    qsort                         = _CRTDLL_qsort                           @909
     407    sin                           = _CRTDLL_sin                       @910
     408    sprintf                       = _CRTDLL_sprintf                       @911
     409    sqrt                          = _CRTDLL_sqrt                       @912
     410    sscanf                        = _CRTDLL_sscanf                     @913
     411    strcat                        = _CRTDLL_strcat                        @914
     412    strchr                        = _CRTDLL_strchr                        @915
     413    strcmp                        = _CRTDLL_strcmp                        @916
     414    strcpy                        = _CRTDLL_strcpy                        @917
     415    strcspn                       = _CRTDLL_strcspn                       @918
     416    strlen                        = _CRTDLL_strlen                        @919
     417    strncat                       = _CRTDLL_strcat                        @920
     418    strncmp                       = _CRTDLL_strncmp                       @921
     419    strncpy                       = _CRTDLL_strncpy                       @922
     420    strpbrk                       = _CRTDLL_strpbrk                       @923
     421    strrchr                       = _CRTDLL_strrchr                       @924
     422    strspn                        = _CRTDLL_strspn                        @925
     423    strstr                        = _CRTDLL_strstr                        @926
     424    swprintf                      = _CRTDLL_swprintf                      @927
     425    tan                           = _CRTDLL_tan                           @928
     426    toupper                       = _CRTDLL_toupper                       @929
     427    tolower                       = _CRTDLL_tolower                       @930
     428    towlower                      = _CRTDLL_towlower                      @931
     429    towupper                      = _CRTDLL_towupper                      @932
     430    vsprintf                      = _CRTDLL_vsprintf                   @933
     431    wcscat                        = _CRTDLL_wcscat                        @934
     432    wcschr                        = _CRTDLL_wcschr                        @935
     433    wcscmp                        = _CRTDLL_wcscmp                        @936
     434    wcscpy                        = _CRTDLL_wcscpy                        @937
     435    wcscspn                       = _CRTDLL_wcscspn
     436    wcslen                        = _CRTDLL_wcslen                        @939
     437    wcsncat                       = _CRTDLL_wcscat                        @940
     438    wcsncmp                       = _CRTDLL_wcsncmp                       @941
     439    wcsncpy                       = _CRTDLL_wcsncpy                       @942
     440    wcspbrk                       = _CRTDLL_wcspbrk                       @943
     441    wcsrchr                       = _CRTDLL_wcsrchr                       @944
     442    wcsspn                        = _CRTDLL_wcsspn                        @945
     443    wcsstr                        = _CRTDLL_wcsstr
     444    wcstok                        = _CRTDLL_wcstok                     @947
     445    wcstol                        = _CRTDLL_wcstol                     @948
     446    wcstombs                      = _CRTDLL_wcstombs                   @949
     447    wcstoul                       = _CRTDLL_wcstoul                    @950
     448
     449    _wtoi                         = _CRTDLL__wtoi                      @983
     450    _wtol                         = _CRTDLL__wtol                      @984
     451
     452    _stricmp                      = _CRTDLL__stricmp
     453    _itoa                         = _CRTDLL__itoa
     454    _itow                         = _CRTDLL__itow
     455
  • trunk/src/NTDLL/ntdllexp.def

    r2134 r2177  
    231231    _RtlConvertLongToLargeInteger@4           @316
    232232    _RtlConvertUlongToLargeInteger@4          @320
     233    _RtlDeleteCriticalSection@4               @327
     234    _RtlLeaveCriticalSection@4                @426
     235    _RtlEnterCriticalSection@4                @344
     236    _RtlInitializeCriticalSection@4           @406
Note: See TracChangeset for help on using the changeset viewer.