rundll32的使用和使用c#调用dll
rundll32的一个简单的例子:
“rundll32 shell32,Control_RunDLL” - 运行控制面板
既然rundll32都可以使用别的dll,那么编程语言同样也可以调用dll,果然是这样的。
python举例
python可以调用win32api
python win32api
c#举例
https://stackoverflow.com/questions/4806575/how-do-i-use-rundll32-to-swapmousebutton
using System.Runtime.InteropServices;
using System;
class SwapMouse {
[DllImport("user32.dll")]
public static extern Int32 SwapMouseButton(Int32 bSwap);
共有 0 条评论