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

Don't import wscnicmp from CRTDLL

File:
1 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
Note: See TracChangeset for help on using the changeset viewer.