码迷,mamicode.com
首页 >  
搜索关键字:kernel32    ( 199个结果
API删除文件
using System;using System.Runtime.InteropServices;namespace ConsoleApplication1{ class Program { [DllImport("kernel32.dll")] publi...
分类:Windows程序   时间:2014-07-28 21:21:04    阅读次数:350
VB6之多维数组中元素在内存中的排列情况
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
.net 获取网络时间(北京时间)24小时制
/// /// 更新系统时间 /// public class UpdateTime { //设置系统时间的API函数 [DllImport("kernel32.dll")] private static extern bool SetLocalTime(...
分类:Web程序   时间:2014-07-02 23:52:35    阅读次数:340
C# 安装字体
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
C#:获取设备电量相关信息
[DllImport("kernel32.dll",EntryPoint="GetSystemPowerStatus")] //win32 api private static extern void GetSystemPowerStatus(ref SYSTEM_POWER_...
分类:其他好文   时间:2014-07-01 19:39:50    阅读次数:162
[转]嵌入字体到程序 Winform C#
http://www.cnblogs.com/top5/archive/2011/06/20/2084942.html程序安装字体或直接调用非注册字体[c#]1.安装字体//程序直接将字体文件安装的系统中。函数声明:[DllImport("kernel32.dll", SetLastError = ...
分类:Windows程序   时间:2014-06-13 14:53:12    阅读次数:430
windows系统调用 进程快照
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程序   时间:2014-05-18 20:01:58    阅读次数:535
如何获得 Windows 操作系统的版本
如何获得 Windows 操作系统的版本 很多时候我们需要知道Windows操作系统的版本,使用下面这个API函数可以做到。 Option Explicit Private Declare Function GetVersionEx Lib "kernel32" Alias "GetVersionExA" (lpVersionInformation As OSVERSIONINFO) As ...
分类:Windows程序   时间:2014-05-09 20:49:00    阅读次数:480
DLL卸载
【DLL卸载】1、扫描Module。通过CreateToohelp32Snapshot、Module32First、Module32Next来完成。2、通过FreeLibrary来卸载。通过在kernel32.dll中找到FreeLibrary函数来完成。完整代码如下:
分类:其他好文   时间:2014-05-01 21:40:09    阅读次数:415
199条   上一页 1 ... 18 19 20
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!