上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 21 下一页
摘要: ```c++ //宽字符转多字节 std::string W2A(const std::wstring& utf8) { int buffSize = WideCharToMultiByte(CP_ACP, NULL, utf8.c_str(), -1, NULL, NULL, NULL, FALSE); char *gbk = new char[buffSize+1]; memset(gb... 阅读全文
posted @ 2017-11-28 14:42 學海無涯 阅读(270) 评论(0) 推荐(0) 编辑
摘要: ``` std::map GB2261 = { { 0,"未知的性别" }, { 1,"男性" }, { 2,"女性" }, { 9,"未说明的性别" }, }; std::map GB3304 = { { 1,"汉族" }, { 2,"蒙古族" }, { 3,"回族" }, { 4,"藏族" }, { 5,"维吾尔族" }, { 6,"苗族" }, ... 阅读全文
posted @ 2017-11-20 14:27 學海無涯 阅读(181) 评论(0) 推荐(0) 编辑
摘要: ``` include include include include std::string HexDump(char buf, int len) { std::stringstream save; for (unsigned char i = 0;i include include includ 阅读全文
posted @ 2017-11-15 15:26 學海無涯 阅读(1432) 评论(0) 推荐(0) 编辑
摘要: http://doc.qt.io/qt 5.9/activeqt server.html hierarchy 例子 阅读全文
posted @ 2017-11-09 15:47 學海無涯 阅读(772) 评论(0) 推荐(0) 编辑
摘要: ``` 3D ActiveQt container ActiveQt server Bluetooth Concurrent Core Enginio Declarative Gui Help Location Multimedia Multimedia Widgets Network NFC OpenGL Positioning Print Support QML Quick Quick Wid... 阅读全文
posted @ 2017-11-09 14:05 學海無涯 阅读(267) 评论(0) 推荐(0) 编辑
摘要: http://www.keil.com/download/list/c51.htm 阅读全文
posted @ 2017-11-09 12:55 學海無涯 阅读(396) 评论(0) 推荐(0) 编辑
摘要: ``` VisualStudio\Microsoft Visual Studio 14.0\Common7\IDE\Remote Debugger 直接复制 Remote Debugger 文件,里面包含了 x86 x64 调试工具,发送给 被调试主机,主机运行 msvsmon.exe 程序 然后查看 自身 IP 和 msvsmon.exe 程序设置的端口,发送给调试者。 被调试主机上的文件,需有... 阅读全文
posted @ 2017-11-04 10:26 學海無涯 阅读(1057) 评论(0) 推荐(0) 编辑
摘要: https://wiki.libsdl.org/APIByCategory http://adolfans.github.io/sdltutorialcn/sdl 2 dot 0 tutorial index/ http://kelvmiao.info/sdl tutorial cn/index.h 阅读全文
posted @ 2017-11-02 21:11 學海無涯 阅读(1542) 评论(0) 推荐(0) 编辑
摘要: 1. 下载FFmepg官网库直接使用即可。 // ConsoleFFmpeg.cpp : 定义控制台应用程序的入口点。 // include "stdafx.h" include include include // define __STDC_CONSTANT_MACROS ifdef __cpl 阅读全文
posted @ 2017-11-02 17:20 學海無涯 阅读(610) 评论(0) 推荐(0) 编辑
摘要: "社会保障(个人)卡规范" c++ //更多请阅读 《社会保障(个人)卡规范》 //cls in const unsigned char Coco_MF[2] = { 0x3f,0x00 };//MF 主文件 const unsigned char Coco_Response[2] = { 0x00 阅读全文
posted @ 2017-10-28 18:48 學海無涯 阅读(1546) 评论(0) 推荐(1) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 21 下一页