Changeset 21926 for trunk/src


Ignore:
Timestamp:
Dec 22, 2011, 12:54:42 PM (14 years ago)
Author:
dmik
Message:

Make SHAutoComplete available in headers and in debug builds.

Also place it along other similar functions.

Location:
trunk/src/shlwapi
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/shlwapi/dbgwrap.cpp

    r10291 r21926  
    249249DEBUGWRAP4(PathUnquoteSpacesA)
    250250DEBUGWRAP4(PathUnquoteSpacesW)
     251DEBUGWRAP8(SHAutoComplete)
    251252DEBUGWRAP4(SHCreateShellPalette)
    252253DEBUGWRAP8(SHDeleteEmptyKeyA)
  • trunk/src/shlwapi/ordinal.c

    r10053 r21926  
    24222422
    24232423/*************************************************************************
     2424 *      SHAutoComplete          [SHLWAPI.@]
     2425 */
     2426HRESULT WINAPI SHAutoComplete(HWND hwndEdit, DWORD dwFlags)
     2427{
     2428  FIXME("stub\n");
     2429  return S_FALSE;
     2430}
     2431
     2432/*************************************************************************
    24242433 *      SHCreateShellPalette    [SHLWAPI.@]
    24252434 */
  • trunk/src/shlwapi/shlwapidbg.def

    r21916 r21926  
    478478    PathUnquoteSpacesW     = "_DbgPathUnquoteSpacesW@4"              @1158
    479479
    480 ;   SHAutoComplete         = _DbgSHAutoComplete@8                    @1159
     480    SHAutoComplete         = "_DbgSHAutoComplete@8"                  @1159
    481481  ; SHCopyKeyA             = _DbgSHCopyKeyA@?                        @1160
    482482  ; SHCopyKeyW             = _DbgSHCopyKeyW@?                        @1161
  • trunk/src/shlwapi/url.c

    r21819 r21926  
    181181    }
    182182    return TRUE;
    183 }
    184 
    185 
    186 /*************************************************************************
    187  *      SHAutoComplete          [SHLWAPI.@]
    188  */
    189 HRESULT WINAPI SHAutoComplete(HWND hwndEdit, DWORD dwFlags)
    190 {
    191   FIXME("SHAutoComplete stub\n");
    192   return S_FALSE;
    193183}
    194184
Note: See TracChangeset for help on using the changeset viewer.