- Timestamp:
- Jul 10, 2000, 8:38:52 PM (25 years ago)
- Location:
- trunk/src/kernel32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/heapstring.cpp
r3804 r3815 1 /* $Id: heapstring.cpp,v 1. 29 2000-07-06 21:18:42sandervl Exp $ */1 /* $Id: heapstring.cpp,v 1.30 2000-07-10 18:38:51 sandervl Exp $ */ 2 2 3 3 /* … … 5 5 * 6 6 * Win32 compatibility string functions for OS/2 7 * 8 * NOTE: lstrcpyn* always appends a terminating 0 (unlike strncpy)! 7 9 * 8 10 * Copyright 1999 Patrick Haller -
trunk/src/kernel32/winimgres.cpp
r3765 r3815 1 /* $Id: winimgres.cpp,v 1.4 2 2000-06-28 18:08:36sandervl Exp $ */1 /* $Id: winimgres.cpp,v 1.43 2000-07-10 18:38:52 sandervl Exp $ */ 2 2 3 3 /* … … 508 508 int idName = -1; 509 509 510 if(pResDirToSearch == NULL) { 511 return NULL; 512 } 513 510 514 /* lpszName */ 511 515 if ((ULONG)lpszName != ID_GETFIRST && HIWORD(lpszName) != 0) … … 578 582 LPCWSTR lpszwName; 579 583 584 if(pResDirToSearch == NULL) { 585 return NULL; 586 } 587 580 588 /* lpszName */ 581 589 if ((ULONG)lpszName != ID_GETFIRST && HIWORD(lpszName) != 0) … … 614 622 int i; 615 623 624 if(pResDirToSearch == NULL) { 625 return NULL; 626 } 627 616 628 paResDirEntries = (PIMAGE_RESOURCE_DIRECTORY_ENTRY)((ULONG)pResDirToSearch + sizeof(*pResDirToSearch)); 617 629
Note:
See TracChangeset
for help on using the changeset viewer.