摘要:
1 // avi文件固定大小:1MB = 1048576 Bytes 2 // 不足的部分置空,最后一帧超过的放弃,并关闭文件。 3 // 声道只有一个,如果编码速度来得及,就用aac,否则就用pcm。 4 5 #include "stdafx.h" 6 #include <stdlib.h> 7 阅读全文
摘要:
在linux下有个工具叫做strip,这是一个可以将linux下的可执行文件的符号表去除,减少每个可执行文件的大小,这对于嵌入式方面很有必要。但是没有了符号表也就意味着没有办法采用gdb进行调试,因为gdb调试是读取ELF文件头来获取符号表,进而调试,但strip之后,可执行文件的ELF文件头就没有 阅读全文
摘要:
为了解决多个应用进程的日志融合输出的问题,设计了如下的方案。 1 /************************************************************************/ 2 /* SharedLogging.h 多进程共享日志模块 */ 3 /***** 阅读全文
摘要:
1 /************************************************************************/ 2 /* SharedLogging.h 多进程共享日志模块 */ 3 /************************************ 阅读全文
摘要:
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <errno.h> #include <assert.h> #include <stdbool.h> #include <s 阅读全文
摘要:
http://www.docin.com/p-577283716.html?qq-pf-to=pcqq.c2c 阅读全文
摘要:
http://blog.chinaunix.net/uid-20672257-id-3147337.html 阅读全文
摘要:
1 wchar_t * matchEnd(wchar_t *text) 2 { 3 while(*text != (wchar_t)' ' && *text++ != '\0'); 4 return text; 5 } 6 7 wchar_t * matchValue(wchar_t *text, wchar_t **end) 8 { ... 阅读全文
摘要:
1 CString csSenMsg; // 要发送的消息 2 3 m_edt_sendMsg.GetWindowText(csSenMsg); // 获得编辑框内容 4 5 if(csSenMsg=="") 6 ... 阅读全文