Ignore:
Timestamp:
Mar 8, 2002, 11:59:35 AM (23 years ago)
Author:
sandervl
Message:

PH: PathIsURLA/W fixes for Flask

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/shlwapi/path.c

    r7820 r8047  
    11631163    base.size = 24;
    11641164    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 
    11651173    return (base.fcncde) ? TRUE : FALSE;
    11661174
     
    11791187    base.size = 24;
    11801188    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 
    11811197    return (base.fcncde) ? TRUE : FALSE;
    11821198
Note: See TracChangeset for help on using the changeset viewer.