码迷,mamicode.com
首页 >  
搜索关键字:kernel32    ( 199个结果
VBA CSV格式的解析类 【c语言CSV Parser转换】
1 Option Explicit 2 '----------------读Csv文件 类--------------------- 3 4 Private Declare Function WideCharToMultiByte Lib "kernel32" _ 5 (ByV...
分类:编程语言   时间:2015-01-12 06:44:27    阅读次数:309
VB6高精度计时类模块
创建一个类模块,粘贴如下代码: '大整数结构体 Private Type LARGE_INTEGER LowPart As Long HighPart As Long End Type '获取时间计数器计数值 Private Declare Function QueryPerformanceCounter _ Lib "kernel32" (...
分类:其他好文   时间:2015-01-08 00:56:56    阅读次数:273
C#通过生成ini文件,记住用户关闭程序之前的选择+忽略跨线程检查
1.在类的里面添加 //写配置文件 [DllImport("kernel32")] private static extern long WritePrivateProfileString(string section, string key, string val, s...
分类:编程语言   时间:2015-01-06 15:08:07    阅读次数:191
用的vs2005,这怎么解决呢,求大神帮忙
“sample.exe”: 已加载“E:\SuperDog\2.1\Samples\Encryption\C\Debug\sample.exe”,已加载符号。 “sample.exe”: 已加载“C:\Windows\System32\ntdll.dll”,未加载任何符号。 “sample.exe”: 已加载“C:\Windows\System32\kernel32.dll”,未加载任何符号。...
分类:其他好文   时间:2015-01-05 11:16:15    阅读次数:325
VB6对象与地址相互转换
Private Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" _ (lpDest As Any, lpSource As Any, ByVal nCount As Long)Private Sub For...
分类:其他好文   时间:2014-12-30 13:31:33    阅读次数:103
extern外部方法使用C#简单例子
外部方法使用C#简单例子1、增加引用using System.Runtime.InteropServices;2、声明和实现的连接[DllImport("kernel32", SetLastError = true)]3、声明外部方法public static extern int GetCurre...
分类:Windows程序   时间:2014-12-25 09:50:46    阅读次数:235
用C#读取,写入ini文件
[DllImport("kernel32.dll")] private static extern bool WritePrivateProfileString(string section, string key, string val, string filePath...
分类:Windows程序   时间:2014-12-24 17:59:19    阅读次数:309
extern外部方法使用C#简单例子
外部方法使用C#简单例子 1、增加引用using System.Runtime.InteropServices; 2、声明和实现的连接[DllImport("kernel32", SetLastError = true)] 3、声明外部方法public static extern int GetCurrentDirectory(int a, StringBuilder b); 4、对外部方...
分类:Windows程序   时间:2014-12-21 23:40:52    阅读次数:386
(转)C#精确时间计时器
原文地址:http://blog.sina.com.cn/s/blog_699d3f1b01012vgb.html1 调用WIN API中的GetTickCount[DllImport("kernel32")]static extern uint GetTickCount();从操作系统启动到现在所...
分类:Windows程序   时间:2014-12-16 23:56:53    阅读次数:369
编译一个很小的可执行文件
C代码: #include?<windows.h> #pragma?comment(lib,?"kernel32.lib") int?start() { ????TCHAR?message[]?=?TEXT("Taylor?Swift\r\n泰勒·斯威夫特"); ????DWORD?toWrite?=?sizeof(mess...
分类:其他好文   时间:2014-12-09 17:57:56    阅读次数:209
199条   上一页 1 ... 15 16 17 18 19 20 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!