加载中
duilib 可编辑ComboBox

可编辑ComboBox

2015/06/25 13:33
2.8K
duilib Ip控件

自定义duilib Ip控件

2015/06/25 13:29
948
CComboUI bug修复

duilib CComboUI 有时鼠标拖动不准bug修复 ,导致其它问题尚未发现 by lssaint duilib 修复combo控件打开下拉菜单后不会自动定位到上次选择的位置上的bug by Redrain...

CDateTimeUI Xp下的bug修复

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

DHCP交叉编译

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

linux wpa_supplicant hostapd 编译

wpa_supplicant 下载地址: 下载链接:http://w1.fi/releases/ 下载wpa_supplicant-2.8.tar.gz 建议使用2.8 先安装这些 sudo apt-get install bison sudo apt-get install flex sudo apt-ge...

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
海思WIFIMT7601驱动移植

目标芯片HI3516ev200,3516ev300. linux系统版本号4.9.交叉编译工具:arm-himix100-linux。 下载MT7601驱动代码:https://www.mediatek.com/products/broadbandWifi/mt7601u WIFI 模式的修改S...

ICE流程

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

2020/08/31 09:32
610
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 ...

ffmpeg源码解读,二站---AVDictionary

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

ffmpeg源码解读,一站

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

得到直线的坐标算法

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; ...

CWinThread 部分代码

MFC CWinThread 部分代码

2015/02/05 09:33
198
MFC tab 绘制效果

MFC gdi tab 绘制

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

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

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

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

2014/12/12 08:54
442

没有更多内容

加载失败,请刷新页面

返回顶部
顶部