view.h
Upload User: xhy777
Upload Date: 2007-02-14
Package Size: 24088k
Code Size: 1k
Category:

Windows Kernel

Development Platform:

Visual C++

  1. //\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\
  2. //
  3. // view.h 
  4. //
  5. //   Definitions used by the IShellView helper functions.
  6. //
  7. //   History:
  8. //
  9. //       3/20/97  edwardp   Created.
  10. //
  11. ////////////////////////////////////////////////////////////////////////////////
  12. //
  13. // Check for previous includes of this file.
  14. //
  15. #ifndef _VIEW_H_
  16. #define _VIEW_H_
  17. //
  18. // Function prototypes.
  19. //
  20. HRESULT CreateDefaultShellView(IShellFolder *pIShellFolder,
  21.                                LPITEMIDLIST pidl,
  22.                                IShellView** ppIShellView);
  23. HRESULT CALLBACK IShellViewCallback(IShellView* pIShellViewOuter,
  24.                                     IShellFolder* pIShellFolder,
  25.                                     HWND hwnd,
  26.                                     UINT msg,
  27.                                     WPARAM wParam,
  28.                                     LPARAM lParam);
  29. HRESULT IShellView_GetDetails(UINT nColumn, PDETAILSINFO pDetails);
  30. #endif // _VIEW_H_