c++
guoruijun_2012_4
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
CentOS下搭建FreeSwitch
yum install -y git gcc-c++ wget alsa-lib-devel autoconf automake bison broadvoice-devel bzip2 curl-devel db-devel e2fsprogs-devel flite-devel g722_1-devel gdbm-devel gnutls-devel ilbc2-devel ldns-devel libcodec2-devel libcurl-devel libedit-devel libidn-dev原创 2021-08-23 22:40:13 · 192 阅读 · 0 评论 -
win7 系统 无法安装 vc run time vc15
检查系统是否安装 service pack 1,没有安装的话网上下载安装原创 2021-01-07 14:15:48 · 362 阅读 · 0 评论 -
linux下的c程序移植到windows方法
linux下的c程序移植到windows方法: 参考:Cygwin和cmake原创 2021-01-04 11:02:27 · 929 阅读 · 0 评论 -
tinyhttp c++ webserver 占用空间小易用
参考链接 https://github.com/EZLippi/Tinyhttpd https://github.com/cbsheng/tinyhttpd https://github.com/mendsley/tinyhttp https://github.com/nengm/Tinyhttpd https://github.com/Huangtuzhi/Tinyhttpd https://github.com/qinguoyi/TinyWebServer https://github.com/Gene原创 2020-12-29 16:33:24 · 380 阅读 · 0 评论 -
c++ webserver tinywebserver
参考链接 https://github.com/qinguoyi/TinyWebServer原创 2020-12-28 20:40:37 · 267 阅读 · 0 评论 -
nsis网络安装参考
参考链接: https://nsis.sourceforge.io/How_can_I_download_files_from_the_Internet%3F原创 2020-12-27 17:03:46 · 260 阅读 · 0 评论 -
使用nssm注册 windows服务 及使用命令
使用nssm注册 windows服务 及使用命令 nssm 软件下载地址:http://www.nssm.cc/download nssm no-sucking service manager 安装服务命令 nssm install nssm install nssm install [] 1 2 3 删除服务 nssm remove nssm remove nssm remove confirm 1 2 3 启动、停止服务 nssm start nssm stop nssm restar转载 2020-11-14 21:24:29 · 388 阅读 · 0 评论 -
lz77(Lempel-Ziv-1977)压缩解压
#include <stdlib.h> #include <stdio.h> #include <stdint.h> #include <math.h> uint32_t lz77_compress (uint8_t *uncompressed_text, uint32_t uncompressed_size, uint8_t *compressed_text, uint8_t pointer_length_width) { uint16_t poi转载 2020-07-17 10:21:39 · 379 阅读 · 0 评论 -
C语言分割合并文件
#include<stdio.h> #include<stdlib.h> #include<string.h> int splitFile(char *, int, char *, char *); int mergeFile(char *, int, char *); int splitFile(char *path, int count, char *savepath, char *savename) { FILE *F = fopen(path, "rb");原创 2020-07-15 17:42:47 · 227 阅读 · 0 评论 -
window 下 qt 安装 注意事项
1、qt下载网址 http://download.qt-project.org/archive/qt/ 下载自己的对应版本 2、选择安装路径 3、安装时编译器选择项目打勾原创 2020-03-12 14:17:10 · 273 阅读 · 0 评论 -
ctk plugin window c++ qt 编译问题
1、在window编译ctk 源码 需要安装 cmake工具 2、ctk 源代码在官网上下载,源码文件如下图不包含build 开头文件夹 3、ctk 源码在window编译时报错需要添加 CTK_QT_VERSION (to 5) CMAKE_PREFIX_PATH (with the path to the cmake folder in Qt) 参照链接 https://blog.csdn...原创 2020-03-12 13:56:57 · 692 阅读 · 0 评论 -
error: LNK2019: 无法解析的外部符号 c++ qt window
1、link2019错误 加入对应的cpp 实现类如下图 加入eventlistener.cpp 文件 link2019 错误消失原创 2020-03-12 13:34:02 · 245 阅读 · 0 评论 -
window qt c++ The process was ended forcefully 程序异常结束 原因
1、程序执行 exe 路径下 确实 dll文件原创 2020-03-12 13:27:13 · 898 阅读 · 1 评论
分享