Changeset 8047 for trunk/src/shlwapi/path.c
- Timestamp:
- Mar 8, 2002, 11:59:35 AM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/shlwapi/path.c
r7820 r8047 1163 1163 base.size = 24; 1164 1164 res1 = SHLWAPI_1(lpstrPath, &base); 1165 1166 #ifdef __WIN32OS2__ 1167 // PH 2002-02-26 Fixes crash on Flask->About 1168 // ShellExecute("..\doc\readme.html") 1169 if (S_OK != res1) 1170 return FALSE; 1171 #endif 1172 1165 1173 return (base.fcncde) ? TRUE : FALSE; 1166 1174 } … … 1179 1187 base.size = 24; 1180 1188 res1 = SHLWAPI_2(lpstrPath, &base); 1189 1190 #ifdef __WIN32OS2__ 1191 // PH 2002-02-26 Fixes crash on Flask->About 1192 // ShellExecute("..\doc\readme.html") 1193 if (S_OK != res1) 1194 return FALSE; 1195 #endif 1196 1181 1197 return (base.fcncde) ? TRUE : FALSE; 1182 1198 }
Note:
See TracChangeset
for help on using the changeset viewer.