Changeset 363 for trunk/src/kernel32/os2util.cpp
- Timestamp:
- Jul 22, 1999, 1:23:06 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/os2util.cpp
r125 r363 1 /* $Id: os2util.cpp,v 1. 5 1999-06-19 17:58:32 sandervl Exp $ */1 /* $Id: os2util.cpp,v 1.6 1999-07-22 11:22:42 sandervl Exp $ */ 2 2 3 3 /* … … 193 193 if(rc) { 194 194 dprintf(("OS2GetResource: Can't get resource size of %d!!!\n", id)); 195 return( 0);195 return(FALSE); 196 196 } 197 197 rc = DosGetResource(hinstance, RT_RCDATA, id, (PPVOID)&resdata); 198 198 if(rc) { 199 199 dprintf(("OS2GetResource: Can't find resource %d!!!\n", id)); 200 return( 0);200 return(FALSE); 201 201 } 202 202 dprintf(("OS2GetResoure: bufLength %d, size %d, id %d", bufLength, size, id)); … … 205 205 DosFreeResource(resdata); 206 206 207 return( FALSE);207 return(TRUE); 208 208 } 209 209
Note:
See TracChangeset
for help on using the changeset viewer.