------ #### MyDbV4 V3.0.2107.2901 - *.[新增]新增支持计算文件MD5。 - *.[新增]部分DataProvider功能移植到DbExtension里,增加扩展性。 - *.[新增]UnixTimeToDateTime和JSTimeToDateTime新增支持long参数。 - *.[合并]合并RyWeb项目到MyDb里。 #### ryControlsV4 V3.0.2107.2901 - *.[改进]优化减少大量IDE警告和消息。
30 lines
793 B
C#
30 lines
793 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Sheng.Winform.Controls.Win32
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public static class Shell32
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public const int SHCNE_ASSOCCHANGED = 0x08000000;
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public const int SHCNF_IDLIST = 0x0;
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="wEventId"></param>
|
|
/// <param name="uFlags"></param>
|
|
/// <param name="dwItem1"></param>
|
|
/// <param name="dwItem2"></param>
|
|
[DllImport("shell32.dll")]
|
|
public static extern void SHChangeNotify(int wEventId, int uFlags, IntPtr dwItem1, IntPtr dwItem2);
|
|
}
|
|
}
|