Changeset 9676 for trunk/src


Ignore:
Timestamp:
Jan 15, 2003, 11:42:50 AM (23 years ago)
Author:
sandervl
Message:

Don't import wscnicmp from CRTDLL

Location:
trunk/src/version
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/version/info.c

    r5472 r9676  
    1 /* $Id: info.c,v 1.3 2001-04-04 09:02:15 sandervl Exp $ */
     1/* $Id: info.c,v 1.4 2003-01-15 10:42:34 sandervl Exp $ */
    22/*
    33 * Implementation of VERSION.DLL - Version Info access (Wine 991212)
     
    408408    while ( (DWORD)child < (DWORD)info + info->wLength )
    409409    {
    410         if ( !CRTDLL__wcsnicmp( child->szKey, szKey, cbKey ) )
     410#ifdef __WIN32OS2__
     411        if ( !lstrncmpiW( child->szKey, szKey, cbKey ) )
     412#else
     413        if ( !CRTDLL_wcsnicmp( child->szKey, szKey, cbKey ) )
     414#endif
    411415            return child;
    412416
  • trunk/src/version/makefile

    r6264 r9676  
    1 # $Id: makefile,v 1.19 2001-07-09 08:07:59 bird Exp $
     1# $Id: makefile,v 1.20 2003-01-15 10:42:50 sandervl Exp $
    22
    33#
     
    3232$(ODIN32_LIB)/user32.lib \
    3333$(ODIN32_LIB)/$(ODINCRT).lib \
    34 $(ODIN32_LIB)/crtdll.lib \
    3534$(ODIN32_LIB)/lz32.lib \
    3635OS2386.LIB \
Note: See TracChangeset for help on using the changeset viewer.