Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

SHChangeNotifyRegister (shell32)
 
.
Summary
TODO - a short description

C# Signature:

[DllImport("shell32.dll", SetLastError=true, EntryPoint="#2", CharSet=CharSet.Auto)]
static extern UInt32 SHChangeNotifyRegister(
            IntPtr hWnd,
            SHCNF fSources,
            SHCNE fEvents,
            uint wMsg,
            int cEntries,
            ref SHChangeNotifyEntry pFsne);

I was unable to get the definition above to work. I ended up with the following.

[DllImport("shell32.dll", EntryPoint = "#2", CharSet = CharSet.Auto)]
static extern uint SHChangeNotifyRegister(
            IntPtr hWnd,
            SHCNRF fSources,
            SHCNE fEvents,
            uint wMsg,
            int cEntries,
            [MarshalAs(UnmanagedType.LPArray)] SHChangeNotifyEntry[] pFsne);

VB Signature:

Declare Function SHChangeNotifyRegister Lib "shell32.dll" (TODO) As TODO

User-Defined Types:

SHCNRF

SHCNF

SHCNE

SHChangeNotifyEntry

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Shell Notifications in C# [http://www.codeproject.com/csharp/shellnotifications.asp]

Alternative Managed API:

Do you know one? Please contribute it!

FileSystemWatcher

Documentation

Please edit this page!

Do you have...

  • helpful tips or sample code to share for using this API in managed code?
  • corrections to the existing content?
  • variations of the signature you want to share?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions