Leaked source code of windows server 2003
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.

36 lines
655 B

  1. #include "shellpch.h"
  2. #pragma hdrstop
  3. static
  4. HRESULT WINAPI
  5. SubscribeToCDF(
  6. HWND hwndOwner,
  7. LPWSTR wszURL,
  8. DWORD dwFlags
  9. )
  10. {
  11. return HRESULT_FROM_WIN32(ERROR_PROC_NOT_FOUND);
  12. }
  13. static
  14. HRESULT WINAPI
  15. ParseDesktopComponent(
  16. HWND hwndOwner,
  17. LPWSTR wszURL,
  18. void* pInfo
  19. )
  20. {
  21. return HRESULT_FROM_WIN32(ERROR_PROC_NOT_FOUND);
  22. }
  23. //
  24. // !! WARNING !! The entries below must be in alphabetical order, and are CASE SENSITIVE (eg lower case comes last!)
  25. //
  26. DEFINE_PROCNAME_ENTRIES(cdfview)
  27. {
  28. DLPENTRY(ParseDesktopComponent)
  29. DLPENTRY(SubscribeToCDF)
  30. };
  31. DEFINE_PROCNAME_MAP(cdfview)