自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

91program 的流水空间

编程、生活

  • 博客(5)
  • 资源 (37)
  • 收藏
  • 关注

转载 C语言->数组名与指针

以下内容转自: http://bbs.csdn.net/topics/390733584感觉对自己有用,收藏了。如果转帖,请注明如上出处。多谢!看到一篇关于C语言指针的文章,正好最近在看《C和指针》就去看了一下。《一道 C 语言指针访存题目的引申》,里面的第一个题目就把我难住了。帮助123456789 #include    int main() {     int a[5] = 

2014-03-19 09:09:50 1112

原创 如何通过 WinCE 访问 WAP 数据

WAP 的访问需要通过 Wireless Datagram Protocol (WDP) 协议来实现。前提是 WinCE OS 在定制时需要选择 WAP 相应的组件,否则在使用相应的 SDK 编译时,对应的 WAP 功能函数无法编译通过。以下是在 WinCE6.0 下,使用 VS2008 开发环境的示例代码:// WapTestDlg.cpp : 实现文件// #includ

2014-03-11 11:23:37 1495

原创 WinCE 下 CPU 使用率的计算方法

在函数 GetIdleTime 的用法中,MSDN 推荐的 CPU 使用率的计算方法,在部分平台下使用时得到的使用率异常:非 0-100% 的数值。先看看 MSDN 推荐的算法的大概实现:static void CallCountCpuIdleThread(CCountCpuDlg *pCCountCpuDlg){ DWORD dwStartTick; DWORD dwIdleSta

2014-03-10 17:01:33 3209

原创 Windows phone8 获取本机 IP 地址

可以在 Bing 查找中输入: "my IP address",然后确认这样可以看到自己的 IP。如果需要通过代码编程来获取本机 IP,可以使用以下代码:注意:此段代码在 WP7.1 上无法编译通过,NetworkInformation 未定义。private static string GetIpAddress(){ string stripaddress = null

2014-03-07 10:49:15 2577

原创 WP8 电话本编程

通讯录搜索:http://msdn.microsoft.com/en-us/library/windowsphone/develop/hh286416(v=vs.105).aspx过滤条件:http://msdn.microsoft.com/en-us/library/windowsphone/develop/hh286417(v=vs.105).aspx程序联系人存储的API在空

2014-03-06 10:36:52 3233

WINCE600-public-CTLPNL.zip

WinCE 6.0 证书私钥文件加载:WINCE600/PUBLIC/WCESHELLFE/OAK/CTLPNL/CPLMAIN”下面的certcpl.cpp文件中有相关代码

2019-07-08

串口调试工具(更新)

修正保存文件名:由 SystemTime 修改为 LocalTime 上一版本说明: 串口调试工具,为调试定制了一些功能,如程序异常时声音提示。 上一个资源是共享 DLL 版本,如果没有安装开发环境可能无法使用,所以重传一个。

2016-05-15

VB创建EXCEL文件

VB 创建 EXCE L文件,使用 VBA 来实现的。

2016-01-27

串口调试工具

串口调试工具,为调试定制了一些功能,如程序异常时声音提示。 上一个资源是共享 DLL 版本,如果没有安装开发环境可能无法使用,所以重传一个。

2016-01-23

MonkeyRunner源代码

android 自带的自动化测试框架 monkeyrunner 源码 MonkeyRunner是个好工具,但是用起来并不是很灵活,为了定制些功能便开始寻找源码。这个过程不是想象的容易,有一些googlecommon、hierchyviewer的源码,不是我想要的。现在上传我整理的MonkeyRunner完整源码,包含adb/recorder/easy device/...源码,还包括依赖库,包括自己尝试更改MonkeyRunner运行界面的源码。

2015-01-09

WinCE 6 SDK

WinCE 6 SDK ARMV4I 模拟器

2014-12-24

Silverlight Windows Embedded Sample

使用 VS2008 模板:Silverlight for Winodws Embedded Application 创建的基于 C++ 的 Silverlight 的工程。 XAML 页面包含两个:MainPage.xaml 和 SecondPage.xaml 代码完全由向导生成,未手工增加任何内容 编译通过

2014-08-12

WINCE700_public_COMMON_oak_drivers_touch

WINCE700 public COMMON oak drivers touch

2014-07-31

WinCE7_SMDK6410_DRIVERS_Touch

WinCE7 SMDK6410 DRIVERS Touch

2014-07-31

PUBLIC_COMMON_OAK_INC

WinCE6.0 PUBLIC_COMMON_OAK_INC include 头文件

2014-07-29

WinCE Silverlight 示例程序

WinCE Silverlight 示例程,最简单的 XAML 解析过程。

2014-07-03

DirectShow Filter 最简单的示例+两个 PIN 的实现

DirectShow Filter 最简单的示例+两个 PIN 的实现(非 WinCE,是 PC 下的)

2014-05-27

DirectShow-Filter 最简单的示例代码

DirectShow-Filter 最简单的示例代码

2014-05-27

IMGDECMP.DLL

WinCE 下显示 JPEG 图片的库。 示例源代码看这里:http://download.csdn.net/detail/91program/417360

2013-12-04

华为的EM730 CE6.0驱动(无代码,CAB安装文件)

华为的EM730 CE6.0驱动(无代码,CAB安装文件)

2010-04-20

Hot Key(for windows ce & EVC4)

Hot Key(for windows ce & EVC4)

2009-07-03

Windows CE Programming Essential

The Windows CE operating system has been available to application programmers for over two years. Independent software vendors have been writing applications for platforms such as the Handheld PC ever since Windows CE was born. At the same time, original equipment manufacturers have been designing and implementing all kinds of new devices based on the operating system. But despite the growth of the operating system and the number of software developers writing applications for it, there are still only a handful of books on the subject of Windows CE programming. My interest in writing this book comes from over two years of Windows CE programming experience, during which I have been involved in a number of Windows CE development efforts. I am writing this book out of a desire to share with readers the insights I have gained from these experiences. As the market for mobile and handheld computing devices continues to grow, Windows CE will continue to change. The features present in Windows CE today may not be there tomorrow. Windows CE features will be shaped by the demands of the users of the devices powered by the operating system. But certain core technologies will always be a part of Windows CE. This book is a guide to the essential features of Windows CE programming.

2008-12-04

CE.NET-Third Edition

Programming Microsoft Windows CE.NET-Third Edition

2008-12-04

vc静态控件文字的自动滚动

vc中,static控件中文字的自动滚动,可以左右滚动,也可以上下滚动,时间,步进宽度,间隔宽度都可以设置

2008-12-02

自动滚动(VC)-静态控件文字的自动滚动

Visual Studio 6.0静态控件文字的自动滚动

2008-12-02

使用TCPMP精减的MP3播放器

使用TCPMP精减的MP3播放器 支持MP3和WMA 显示LRC歌词和MP3的波形播放声音大小,但是WMA的是假的 有一个资源是不带字库的,会小很多。

2008-11-18

使用TCPMP精减的MP3播放器

使用TCPMP精减的MP3播放器 支持MP3和WMA,显示LRC歌词和MP3的播放声音大小的波形,但是WMA的是假的。

2008-11-18

H264Decode-for ce

H264Decode

2008-05-11

解说Win32的窗口子类代码示例

解说Win32的窗口子类代码示例

2008-04-16

WinCE定制中的大内存支持与永久保存注册表

WinCE定制中的大内存支持与永久保存注册表

2008-04-16

TC35调试笔记

TC35 调试的笔记

2008-04-16

Platform Builder 集成开发环境研究

Platform Builder 集成开发环境研究

2008-04-16

Hive register

Hive register

2008-04-16

GIF-GDI+

GDI+中GIF图片的显示

2008-04-16

CE MAPI实例讲解

CE MAPI实例讲解

2008-04-16

ImageButton

ImageButton.msi

2008-04-16

VOImage

VOImage 一个完整的EVC工程,附带测试用jpg图片。

2008-04-16

regsvr2(DLL) for CE(ARM)

regsvr2(DLL) for CE(ARM)

2008-04-16

VxWorks5.3设备驱动编写和移植[英]

VxWorks5.3设备驱动编写和移植[英]

2008-04-16

STK开发简介

SIM STK开发简介

2008-04-16

SHELL定制过程说明

SHELL定制过程说明

2008-04-16

Nucleus PLUS参考手册

Nucleus PLUS参考手册

2008-04-16

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除