- Timestamp:
- Jun 17, 2000, 11:03:37 AM (25 years ago)
- Location:
- trunk/src/kernel32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/winimagebase.h
r3678 r3720 1 /* $Id: winimagebase.h,v 1.1 1 2000-06-08 18:08:57sandervl Exp $ */1 /* $Id: winimagebase.h,v 1.12 2000-06-17 09:03:36 sandervl Exp $ */ 2 2 3 3 /* … … 23 23 24 24 #define LANG_GETFIRST 0x80000000 25 #define ID_GETFIRST LANG_GETFIRST26 25 #define IDLANG_GETFIRST LANG_GETFIRST 27 26 -
trunk/src/kernel32/winimgres.cpp
r3718 r3720 1 /* $Id: winimgres.cpp,v 1. 39 2000-06-16 21:23:40sandervl Exp $ */1 /* $Id: winimgres.cpp,v 1.40 2000-06-17 09:03:37 sandervl Exp $ */ 2 2 3 3 /* … … 65 65 return NULL; 66 66 67 if(HIWORD(id) ) {67 if(HIWORD(id) && id != IDLANG_GETFIRST) { 68 68 char *lpszName = (char *)id; 69 69 //"#102" really means numeric id 102 … … 448 448 return FALSE; 449 449 } 450 pData = getPEResourceEntry(ID _GETFIRST, NTRT_VERSION, IDLANG_GETFIRST, &error);450 pData = getPEResourceEntry(IDLANG_GETFIRST, NTRT_VERSION, IDLANG_GETFIRST, &error); 451 451 if(pData == NULL) { 452 452 dprintf(("Win32PeLdrImage::getVersionStruct: couldn't find version resource!"));
Note:
See TracChangeset
for help on using the changeset viewer.