Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
1.1 KiB

  1. #include "shellpch.h"
  2. #pragma hdrstop
  3. static
  4. LPTSTR
  5. STDAPICALLTYPE
  6. PathFindFileNameW(
  7. LPCTSTR pPath
  8. )
  9. {
  10. return (LPTSTR)pPath;
  11. }
  12. static
  13. HRESULT STDAPICALLTYPE
  14. SHAutoComplete(HWND hwndEdit, DWORD dwFlags)
  15. {
  16. return E_FAIL;
  17. }
  18. static
  19. BOOL
  20. WINAPI
  21. SHGetFileDescriptionW(
  22. LPCWSTR pszPath,
  23. LPCWSTR pszVersionKeyIn,
  24. LPCWSTR pszCutListIn,
  25. LPWSTR pszDesc,
  26. UINT *pcchDesc
  27. )
  28. {
  29. return FALSE;
  30. }
  31. static
  32. LPWSTR
  33. StrCatW(LPWSTR pszDst, LPCWSTR pszSrc)
  34. {
  35. return pszDst;
  36. }
  37. static
  38. HRESULT STDAPICALLTYPE
  39. UrlCanonicalizeW(
  40. LPCWSTR pszUrl,
  41. LPWSTR pszCanonicalized,
  42. LPDWORD pcchCanonicalized,
  43. DWORD dwFlags
  44. )
  45. {
  46. return E_FAIL;
  47. }
  48. //
  49. // !! WARNING !! The entries below must be in order by ORDINAL
  50. //
  51. DEFINE_ORDINAL_ENTRIES(shlwapi)
  52. {
  53. DLOENTRY(348, SHGetFileDescriptionW)
  54. };
  55. DEFINE_ORDINAL_MAP(shlwapi)
  56. //
  57. // !! WARNING !! The entries below must be in alphabetical order, and are CASE SENSITIVE (eg lower case comes last!)
  58. //
  59. DEFINE_PROCNAME_ENTRIES(shlwapi)
  60. {
  61. DLPENTRY(PathFindFileNameW)
  62. DLPENTRY(SHAutoComplete)
  63. DLPENTRY(StrCatW)
  64. DLPENTRY(UrlCanonicalizeW)
  65. };
  66. DEFINE_PROCNAME_MAP(shlwapi)