- Timestamp:
- Jan 15, 2003, 11:42:50 AM (23 years ago)
- 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: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 -
trunk/src/version/makefile
r6264 r9676 1 # $Id: makefile,v 1. 19 2001-07-09 08:07:59 birdExp $1 # $Id: makefile,v 1.20 2003-01-15 10:42:50 sandervl Exp $ 2 2 3 3 # … … 32 32 $(ODIN32_LIB)/user32.lib \ 33 33 $(ODIN32_LIB)/$(ODINCRT).lib \ 34 $(ODIN32_LIB)/crtdll.lib \35 34 $(ODIN32_LIB)/lz32.lib \ 36 35 OS2386.LIB \
Note:
See TracChangeset
for help on using the changeset viewer.