
WINCE
Mr键
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
采集WINCE设备GPS数据
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Threading; using Syste原创 2012-02-02 13:51:29 · 874 阅读 · 0 评论 -
win32读dll中的函数
DLL代码 extern "C " _declspec(dllexport) int add2int(int x,int y) { return x+y; } 编译为a.dll .exe HINSTANCE hDll; hDll=LoadLibrary( "a.DLL "); assert(hDll);转载 2012-01-11 15:33:13 · 681 阅读 · 0 评论 -
WINCE 文本读写操作总结
#include "stdafx.h" #include #include //1.C语言函数fopen(),式例代码: #include #include int _tmain(int argc, _TCHAR* argv[]) { // 创建或打开二进制文件,并以追加方式打开 FILE *pFile=_tfopen(_T("\\Progra转载 2012-02-02 10:34:39 · 1956 阅读 · 1 评论 -
win32智能设备程序中文文字换行加折行的方法
写wince程序寻得的中文文字换行加折行的方法: void loadTxtWordBreak(HDC hdc,RECT rect)//按行读取txt文件 { CString sAll, sLine; CString sWholePath; USHORT i; HANDLE hFile; DWORD NumberOfBytesRead; BOOL bSuccess; sWholePath原创 2011-10-11 16:06:39 · 1932 阅读 · 1 评论