.
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
TODO - a short description
3/29/2011 3:03:12 PM - -24.106.8.210
TODO - a short description
3/16/2007 1:43:16 PM - -218.18.39.154
TODO - a short description
7/11/2008 7:30:34 AM - -196.41.14.97
TODO - a short description
3/16/2007 2:19:58 PM - -218.18.39.154
TODO - a short description
3/29/2012 2:42:36 PM - -188.129.131.160
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).