------ #### ryControlsV4 V3.0.2107.0101 - *.[新增]新增Sheng.Winform.Controls部分控件。 #### RyWeb V3.0.2107.0101 - *.[新增]QuickWeb新增引用页设置。 #### MyDbV4 V3.0.2107.0101 - *.[新增]支持忽略大小写的替换功能。
18 lines
515 B
C#
18 lines
515 B
C#
using System.Text;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Sheng.Winform.Controls.Win32
|
|
{
|
|
public static class Kernel32
|
|
{
|
|
[DllImport("kernel32")]
|
|
public static extern long WritePrivateProfileString(string section,
|
|
string key, string val, string filePath);
|
|
|
|
[DllImport("kernel32")]
|
|
public static extern int GetPrivateProfileString(string section,
|
|
string key, string def, StringBuilder retVal,
|
|
int size, string filePath);
|
|
}
|
|
}
|