蒙柯's profile珍惜PhotosBlogListsMore ![]() | Help |
珍惜当这些相遇相识的孩子们长大后,还会记得他们当初天真无忧的美好青春吗? Welcome!
史一帆wrote:
你读育红的时候住哪,我怕认错人了
史一帆,这个名字你有印象吗,在育红4年级下学期还是5年级的时候,你是新转来的,我们晚上经常一起回家。希望我没找错人
Nov. 16
吉吉 郑wrote:
包包,我在网上搜了个RemoveWGA,运行一下就解决了,现在恢复正常.
June 15
吉吉 郑wrote:
Bob,昨日开机发现windows要更新的信息,更新后发现每次开机都说我用的操作系统是盗版的,非常烦人。如何解决?期待中。。。。。。
May 12
Joystylewrote:
记得有个日本人开发的QR Code生成软件,不过因为内码原因还不支持中文。
识别软件就更是没有了,大概和650的摄像头分辨率不高也有关系吧~
Apr. 26
Joystylewrote:
Bob,最近用Blazer登录Spaces的Mobile版本成功么?
我连续好几天都无法“Sign in”,不知道是什么问题……
Apr. 24
|
October 01 人在法国到法国图尔(Tours)好几天了,感觉并没有特别的陌生感,除了吃的上面,确实很难买齐做中国菜的原料外。
访问space速度明显快了很多,不错,嘿嘿
回头详细写一些东西,这篇就当重新开博了。
September 11 Palm API里没有公开的部分,Handspring Undocumented APIs找到HsPhoneTraps.h这个头文件,里面很多诸如PhnLibTrapDisconnect这样的定义。
然后在自己的头文件里,定义
extern Err PhnLibDisconnect(UInt16 refNum, UInt16 line) PHN_LIB_TRAP (PhnLibTrapDisconnect);
extern Err PhnLibActivate(UInt16 refNum, UInt16 line) PHN_LIB_TRAP (PhnLibTrapActivate); 后面的第二个参数line 表示电话线路 如果第一次通话 line就是1 如果通话中来了电话 line就是2 如果是电话会议 就是3
然后第一个函数就是挂断电话的用功能,就是接通的功能
Handspring Undocumented APIs So if you have ever developed for the Treos, you may have run into the fact that there are some functions that just aren't available in the PhnLib SDK. One such function that I found missing the other day was a function to hang up a phone call that was already taking place. So, as is my usual pattern, when I need to find something, I headed to Google groups, the Palm developer site and the PalmSource/Access developer web site. None of these turned up anything. Ugh. I started to get worried. Next, as is my usual custom, I headed to the header files to do some digging. After poking around for a while in the headers, I found a tantalizingly named trap in HsPhoneTraps.h called 'PhnLibTrapDisconnect'. For some strange reaon, the folks at Palm/Handspring neglected to include this function in the SDK, but included the system trap for it. This was a fantastic find, and after a bit more poking and testing, I found some code that would work. Simply declare this function prototype somewhere in your headers: extern Err PhnLibDisconnect(UInt16 refNum, UInt16 line) PHN_LIB_TRAP (PhnLibTrapDisconnect); And then you will be free to disconnect whichever of the two lines you would like. One caveat that I would offer, however is that there may be additional variables required by this function so to be safe try calling the function like this: char stackProtector[16]; Err err = PhnLibDisconnect(phnLibRef, 0); As long as your compiler doesn't optimize it away, the 'char stackProtector[16]' right before you call the function should protect you just a bit from any stack issues that could arise from not having the right function signature. Of course, you should use this snippet at your own risk, but I do sincerely hope that you find it useful. I certainly have. And as always, if you have additional info or comments about this, feel free to drop me a quick note. I always love good emails. July 01 让英文WM6支持中文的方法(WM5或其他系统可以参考)搞了半天X50v的英文rom,即便装了雅黑也就是不完全显示中文,个别地方会乱码。更恶劣的是,控制面板里的区域选项里没有中文中国…… 后来发现了解决方法,如下:
然后一切OK。 June 09 CodeWarrior Palm升级Palm OS 5 SDK 68K R4累死我了,这个升级升的……
参考了以下两个网页,终于搞定。最后还是感谢一帆的那个页面,提供了关键信息
照搬一下一帆的原文
这里面还有一个注意点就是,打开MSL C++.Palm_OS.68k.mcp后,那个下拉列表一定要找到,里面要改8项呢。
那个下拉列表让我好找……你找到了吗? June 04 X61通过u盘移动硬盘不需要光驱安装Vista昨晚研究了很久,终于解决了没有光驱安装vista的方法。
当然,很多人是直接安装xp后再从xp上升级安装的。因为vista不允许从移动设备上安装,很多人即便从移动设备引导启动了WinPE也无法安装vista。
但,如果WinPE安装到本地磁盘呢?
我的操作方法如下
|
||||
|
|