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.

40 lines
956 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1997.
  5. //
  6. // File: N C S H E L L . H
  7. //
  8. // Contents: Basic common code.
  9. //
  10. // Notes:
  11. //
  12. // Author: anbrad 08 Jun 1999
  13. //
  14. //----------------------------------------------------------------------------
  15. #pragma once
  16. #ifndef _NCSHELL_H_
  17. #define _NCSHELL_H_
  18. #include <shlobj.h>
  19. #include <shlobjp.h>
  20. #ifndef PCONFOLDPIDLDEFINED
  21. class PCONFOLDPIDL;
  22. class PCONFOLDPIDLFOLDER;
  23. #endif
  24. VOID GenerateEvent(
  25. LONG lEventId,
  26. const PCONFOLDPIDLFOLDER& pidlFolder,
  27. const PCONFOLDPIDL& pidlIn,
  28. LPCITEMIDLIST pidlNewIn);
  29. VOID GenerateEvent(
  30. LONG lEventId,
  31. LPCITEMIDLIST pidlFolder,
  32. LPCITEMIDLIST pidlIn,
  33. LPCITEMIDLIST pidlNewIn);
  34. #endif // _NCSHELL_H_