摘要: (1)位图文件的装载int GUIAPI LoadBitmapFromFile (HDC hdc, PBITMAP pBitmap, const char* spFileName);#define LoadBitmap LoadBitmapFromFilevoid GUIAPI UnloadBitm... 阅读全文
posted @ 2014-05-29 17:41 paullam 阅读(2212) 评论(0) 推荐(0) 编辑
摘要: Cookie总是保存在客户端中,按在客户端中的存储位置,可分为内存Cookie和硬盘Cookie。内存Cookie由浏览器维护,保存在内存中,浏览器关闭后就消失了,其存在时间是短暂的。硬盘Cookie保存在硬盘里,有一个过期时间,除非用户手工清理或到了过期时间,硬盘Cookie不会被删除,其存在时间... 阅读全文
posted @ 2014-05-27 00:09 paullam 阅读(351) 评论(0) 推荐(0) 编辑
摘要: System V IPC包括三种类型:System V消息队列System V信号灯System V共享内存(一) key_t键System V使用key_t值作为它们的名字ftok函数把一个已存在的路径名和一个整数标识符转换成一个key_t值#include key_t ftok(const ch... 阅读全文
posted @ 2014-05-21 14:49 paullam 阅读(277) 评论(0) 推荐(0) 编辑
摘要: 1. 配置:./configure --host=arm-linux --prefix=/usr/local/arm-linux-4.1.1/lib--host指定arm的交叉编译器的名称,--prefix指定编译好之后安装的路径2. 编译:make3. 安装:make install 阅读全文
posted @ 2014-05-20 16:35 paullam 阅读(360) 评论(0) 推荐(0) 编辑
摘要: libncurses库用来在显示器上显示文本界面,典型例子就是Linux内核的make menuconfig配置界面。libform库用于在ncurses中使用表格。libmenu库用于在ncurses中使用菜单。libpanel库用于在ncurses中使用面板。1. 下载程序包源码:http://... 阅读全文
posted @ 2014-05-20 11:15 paullam 阅读(1891) 评论(0) 推荐(0) 编辑
摘要: dllist.h 1 #ifndef _DLLIST_H 2 #define _DLLIST_H 3 4 #ifdef __cplusplus 5 extern "C" { 6 #endif 7 8 struct DLLNode_T{ 9 void *pData; ... 阅读全文
posted @ 2014-05-16 17:56 paullam 阅读(326) 评论(0) 推荐(0) 编辑
摘要: (一)安装Windows Server 2008密码必须包括大写字母,小写字母和数字(二)安装IIS(三)安装VMware Tools(四) 取消IE增强安全将【启用】改为【禁用】(五)启用共享文件夹 阅读全文
posted @ 2014-05-16 13:18 paullam 阅读(263) 评论(0) 推荐(0) 编辑
摘要: 这是Live555的源码 1 #include 2 #include 3 4 static char base64DecodeTable[256]; 5 6 static void initBase64DecodeTable() { 7 int i; 8 for (i... 阅读全文
posted @ 2014-05-11 00:56 paullam 阅读(439) 评论(0) 推荐(0) 编辑
摘要: 1 static const unsigned short crc16_table[256]= 2 { 3 0x0000, 0xC0C1, 0xC181, 0x0140, 0xC301, 0x03C0, 0x0280, 0xC241, 4 0xC601, 0x06C... 阅读全文
posted @ 2014-05-09 12:56 paullam 阅读(9461) 评论(0) 推荐(1) 编辑
摘要: (一)编码转换QString:---------------------------------------------------------------------------------普通成员函数:QByteArray toAscii () constQByteArray toLatin1 ... 阅读全文
posted @ 2014-05-06 16:26 paullam 阅读(3724) 评论(0) 推荐(0) 编辑