-
采用TCP handoff技术实现服务器集群。减少接入点的负载负担,使得集群的性能大大提高。...
采用TCP handoff技术实现服务器集群。减少接入点的负载负担,使得集群的性能大大提高。-Using TCP handoff technology for server clusters. The burden of reducing the load on the access point, making the performance of the cluster increased substantially.
- 2022-07-07 23:10:52下载
- 积分:1
-
这是一个监控程序,可以运行其他小程序,这是描述的…
这是一个运行其他监控程序的小程序,对其进行了详细的描述,可以任意控制其他程序作为停止运行的工具
- 2022-04-01 23:21:23下载
- 积分:1
-
MFC简单画图程序Draw
这个画图小程序是在 VS2012环境下编写的 MFC 单文档程序, 压缩包内含程序设计详细说明。
功能概述
通过在菜单中选择不同的形状,可以实现画直线、矩形、椭圆以及鼠标按下时随着鼠标移动划线以及橡皮擦功能,
线条粗细、颜色也可以在菜单中调整。
设计思路
通过对菜单的响应获取绘图类型、颜色和线条粗细程度。
通过 CPen 类更改画笔颜色和粗细或将画笔改为橡皮擦,
通过 CDC 类的成员函数 MoveTo( int x, int y ); LineTo( int x, int y ); Rectangle( int x1, int y1, int x2, int y2 ); Ellipse( int x1, int y1, int x2, int y2 ); 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-03-18 10:23:50下载
- 积分:1
-
Convert from VNI to Unicode
Convert from VNI to Unicode
- 2022-05-26 01:24:43下载
- 积分:1
-
poj典型题目解题思路详解
包含源代码和解题时应注意的问题及题目陷阱设计分析...
poj典型题目解题思路详解
包含源代码和解题时应注意的问题及题目陷阱设计分析-POJ typical Oklahoma Elaborates on topics include source code and they should pay attention to solving the problems and pitfalls topic Design Analysis
- 2022-10-09 19:30:02下载
- 积分:1
-
small plane reservation systems, the main application of Visual c/c, the initial...
小的飞机订票系统,主要应用了Visual c/c++,初次尝试,请多多指教-small plane reservation systems, the main application of Visual c/c, the initial attempt, you will enlighten
- 2022-08-23 02:13:24下载
- 积分:1
-
一个可以快速搜索RAR.ZIP等文件内容的工具,当初写着玩的
一个可以快速搜索RAR.ZIP等文件内容的工具,当初写着玩的-RAR.ZIP a quick search tool, such as the content of the document, when read, play
- 2022-03-15 16:15:50下载
- 积分:1
-
测试ip地址的合法性!
测试ip地址的合法性!-test the legality ip address!
- 2023-01-12 09:00:03下载
- 积分:1
-
inside the ACM often contain high
这个程序里面包含ACM中常考的高精度算法的全部,非常有价值,算法比传统的要简单精炼-inside the ACM often contain high-precision test algorithm all, a very valuable, algorithm than the traditional simple refining
- 2022-08-10 10:35:01下载
- 积分:1
-
kakabossskdr
/*
base64.cpp 和 base64.h
版权所有 (C) 2004年-2008 René Nyffenegger
提供此源代码 " 作为-是 ",没有任何明示或暗示
保修。在没有事件将作者举行任何损害承担责任
因使用本软件。
授予任何人出于任何目的,使用此软件的权限
包括商业应用程序进行修改和重新发布它
自由,受到以下限制:
1.此源代码的起源必须不得歪曲 ;你必须不
声称是你写的原始源代码。如果您使用此源代码
在一种产品,确认产品文档中将
表示赞赏,但不是必需的。
2.改变源版本为此,必须有明确标记和一定不能
谎称为原始的源代码。
3.本公告不可能会被删除,或从任何源分布改动。
勒内 · Nyffenegger rene.nyffenegger@adp-gmbh.ch
*/
#include"stdafx.h"
//#include"base64.h"
#include"msvc_common.h"
#include < iostream >
静态 const std::string base64_chars =
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
""abcdefghijklmnopqrstuvwxyz
"0123456789 +";
静态内联 bool is_base64 (无符号的 char c) {
返回 (isalnum(c) | |(c == "+") ||(c == "/"));
}
std::string base64_encode (无符号的 char const * bytes_to_encode、 无符号的 in
- 2022-12-20 14:15:03下载
- 积分:1