using System;using System.Runtime.InteropServices;namespace ConsoleApplication1{ class Program { [DllImport("kernel32.dll")] publi...
1 Private Declare Sub RtlMoveMemory Lib "kernel32" (Destination As Any, Source As Any, ByVal Length As Long) 2 3 4 'code by lichmama from cnblogs.c...
分类:
其他好文 时间:
2014-07-14 08:34:41
阅读次数:
379
/// /// 更新系统时间 /// public class UpdateTime { //设置系统时间的API函数 [DllImport("kernel32.dll")] private static extern bool SetLocalTime(...
分类:
Web程序 时间:
2014-07-02 23:52:35
阅读次数:
340
using System.Windows.Forms;using System.Runtime.InteropServices;using System.IO;[DllImport("kernel32.dll", SetLastError = true)]static extern int Writ...
分类:
其他好文 时间:
2014-07-02 22:46:27
阅读次数:
334
[DllImport("kernel32.dll",EntryPoint="GetSystemPowerStatus")] //win32 api private static extern void GetSystemPowerStatus(ref SYSTEM_POWER_...
分类:
其他好文 时间:
2014-07-01 19:39:50
阅读次数:
162
http://www.cnblogs.com/top5/archive/2011/06/20/2084942.html程序安装字体或直接调用非注册字体[c#]1.安装字体//程序直接将字体文件安装的系统中。函数声明:[DllImport("kernel32.dll",
SetLastError = ...
1 #include "windows.h" 2 #include "tlhelp32.h" 3
#include "iostream" 4 using namespace std; 5 6 #pragma
comment(lib,"kernel32.lib") 7 8 DWORD GetKe...
如何获得 Windows 操作系统的版本
很多时候我们需要知道Windows操作系统的版本,使用下面这个API函数可以做到。
Option Explicit
Private Declare Function GetVersionEx Lib "kernel32" Alias "GetVersionExA" (lpVersionInformation As OSVERSIONINFO) As ...
【DLL卸载】1、扫描Module。通过CreateToohelp32Snapshot、Module32First、Module32Next来完成。2、通过FreeLibrary来卸载。通过在kernel32.dll中找到FreeLibrary函数来完成。完整代码如下:
分类:
其他好文 时间:
2014-05-01 21:40:09
阅读次数:
415