加载中
duilib 可编辑ComboBox

可编辑ComboBox

2015/06/25 13:33
2.7K
CListUI 使用注意

duilib CListUI CListContainerElementUI bug

CDateTimeUI Xp下的bug修复

CDateTimeUI 在xp下的bug修复。修改CDateTimeWnd的HandleMessage方法

2015/01/21 13:49
3.5K
DHCP交叉编译

./configure CC=arm-himix100-linux-gcc --disable-ipv6 下载地址:https://roy.marples.name/downloads/dhcpcd/ dhcpcd-6.0.1......

2021/06/01 11:32
373
Linux WIFI,4G 内核配置,以MT7601U 为例

.config - Linux/arm 4.9.37 Kernel Configuration Device Drivers -> [*] USB support //4G配置 --><*> USB Serial Converter support ---><*> USB driver for GSM ......

2020/09/17 11:43
2.5K
ICE流程

本文介绍stun/turn ,已turn 为主

ice
2020/08/31 09:32
579
ffmpeg源码解读,三站

1.av_format_inject_global_side_data 将s的所以AVStream的inject_global_side_data字段设置为1. void av_format_inject_global_side_data(AVFormatContext *s)        {       int ...

2016/10/26 17:28
1.8K
ffmpeg源码解读,二站---AVDictionary

1.AVDictionary 字典 定义: struct AVDictionary {int count;AVDictionaryEntry *elems;}; typedef struct AVDictionaryEntry { char *key; char *value; } AVDictionaryEntry; 参数标志: ...

2016/10/18 10:33
1.9K
ffmpeg源码解读,一站

1.AVFormatContext(IO格式上下文,用于读写) avformat_alloc_context 分配一个结构AVFormatContext。 avformat_alloc_context调用avformat_get_context_defaults来初始化AVFormatContext。...

2016/10/17 18:05
409
得到直线的坐标算法

void GetPts(POINT OA,POINT OB,std::list<POINT> &pts) { int L=abs(OA.x-OB.x); int W=abs(OA.y-OB.y); if(W==0&&L!=0){ for(int i=1;i<L;i++) { POINT pt; if(OA.x<OB.x) { pt.x=i+OA.x; ...

2015/03/23 12:55
126
CWinThread 部分代码

MFC CWinThread 部分代码

2015/02/05 09:33
174
CWnd 弹框

MFC CWnd

2015/02/02 17:38
125
MFC tab 绘制效果

MFC gdi tab 绘制

2015/01/29 17:50
229
临界区读取操作类 CRWCriticalSection

class CRWCriticalSection     {   public:     explicit CRWCriticalSection();     ~CRWCriticalSection();   public:     BOOL LockReader(unsigned int nTimeOut = INFINITE);     void ...

2015/01/26 15:50
82
vc 简单完成端口线程池

能力差,初学,希望大家指教, 线程池 完成端口。(请勿使用,存在效率问题)

2014/12/12 08:54
404

没有更多内容

加载失败,请刷新页面

返回顶部
顶部