Changeset 9676 for trunk/src/version/info.c
- Timestamp:
- Jan 15, 2003, 11:42:50 AM (23 years ago)
- 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:15sandervl Exp $ */1 /* $Id: info.c,v 1.4 2003-01-15 10:42:34 sandervl Exp $ */ 2 2 /* 3 3 * Implementation of VERSION.DLL - Version Info access (Wine 991212) … … 408 408 while ( (DWORD)child < (DWORD)info + info->wLength ) 409 409 { 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 411 415 return child; 412 416
Note:
See TracChangeset
for help on using the changeset viewer.