![]() |
Sylloge
A C# helper library
|
00001 using System; 00002 using System.Collections.Generic; 00003 using System.Linq; 00004 using System.Text; 00005 using System.Runtime.InteropServices; 00006 00007 namespace Sylloge 00008 { 00009 public static partial class WinAPI 00010 { 00011 public static class Shell32 00012 { 00013 #region Shell32 00014 00015 [DllImport("shell32.dll")] 00016 public static extern void SHChangeNotify(int eventId, int flags, int item1, int item2); 00017 00018 #endregion 00019 } 00020 } 00021 }
1.7.4