
c++
liyingzai
这个作者很懒,什么都没留下…
展开
-
libuv简单tcp和udp demo
demo详细代码可以到github查看:https://github.com/zym479466697/TestLibuv.git//服务端test代码void TestTcpSvrFunc(){ uv::CLooper* ptrLooper = new uv::CLooper; ptrLooper->InitLooper(); uv::CTcpServer server(DEF_PACK_HEAD_FLAG); server.AttachLooper(pt...原创 2020-10-21 15:07:15 · 885 阅读 · 0 评论 -
miniblink 封装duilib 控件 WkeWebkitUI 离屏渲染方式
demo可以到github查看:https://github.com/zym479466697/duilib-miniblink.gitWkeWebkitUI.h#ifndef __WKEWEBKIT__H_#define __WKEWEBKIT__H_#include <queue>#include <Windows.h>#include <obj...原创 2019-11-27 13:22:13 · 1589 阅读 · 2 评论 -
stl map用boost库序列化
#include "stdafx.h"#include #include #include #include #include int _tmain(int argc, _TCHAR* argv[]){std::map m_accountMap;m_accountMap[1] = 1;m_accountMap[2] = 2;std::原创 2014-12-17 14:01:49 · 2019 阅读 · 0 评论 -
angleproject window 编译
angleproject window 编译原创 2016-11-03 13:48:26 · 554 阅读 · 0 评论 -
duilib richedit 添加文本提示
duilib richedit添加文本提示添加两个成员变量提示文字和提示文字颜色 DWORD m_dwPlaceholderTextColor;CDuiString m_sPlaceholderText;添加painttext函数bool CRichEditUI::DoPaint(HDC hDC, const RECT& rcPaint, CControlUI原创 2017-04-20 13:39:25 · 2597 阅读 · 0 评论 -
c++ win32 时区设置 兼容(xp,win7,win10)系统
typedef struct _REG_TZI_FORMAT{ LONG Bias; LONG StandardBias; LONG DaylightBias; SYSTEMTIME StandardDate; SYSTEMTIME DaylightDate;} REG_TZI_FORMAT;typedef struct _TIME_DYNAMIC...原创 2019-06-05 17:02:43 · 742 阅读 · 0 评论