自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(24)
  • 资源 (35)
  • 收藏
  • 关注

原创 奇怪的 io_service--- accepter handler 没有启动

封装了一下 io_service pool .ioservice_pool 改为 shared_ptr  在 Server  启动的时候进行 run,  accepter 的 io_service 从 ioservice_pool获取。问题1  是 , 先运行  io_service  再执行 waitAccepet , client竟然没有连接上。推测应该是i

2017-11-14 20:44:31 270

转载 boost asio中io_service类的几种使用

boost asio中io_service类的几种使用https://www.cnblogs.com/zhaojihui/p/6887877.htmlio_service类你应该已经发现大部分使用Boost.Asio编写的代码都会使用几个io_service的实例。io_service是这个库里面最重要的类;它负责和操作系统打交道,等待所有异步操作的结束,然后为

2017-11-13 15:52:11 2018

转载 libevent多线程使用事项

libevent多线程使用事项Posted on 2014-03-14 18:07 浮萍晓生 阅读(113) 评论(0)  编辑 收藏原文链接地址: http://www.cnblogs.com/walker-lc/articles/3601100.html在linux平台上使用c开发网络程序的同志们一般情况下都对鼎鼎大名的libevent非常的熟悉了。但是一些新进入此

2017-11-11 11:17:42 2121

转载 linux下gettimeofday函数windows替换方案

* Copyright (C) 2008 mymtom (mymtom@hotmail.com) * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the f

2017-11-09 20:31:53 682 1

转载 7z制作自解压安装包

http://www.cnblogs.com/sparkdev/p/5635612.html像7z和winRAR这样的压缩工具都支持制作自解压的文件。所谓自解压的文件就是不需要目标机器上安装解压工具,通过运行压缩包自己即可解压出压缩包中的文件。下面我们就介绍一下如何利用7z的自解压功能制作应用程序安装包。熟悉应用程序安装的朋友应该清楚,安装一个应用程序真的是可简单,简单到很简单

2017-09-06 09:51:52 12987

转载 浮点数的 介绍

浮点数Elliotte Harold2009 年 2 月 20 日发布WeiboGoogle+用电子邮件发送本页面 0系列内容:此内容是该系列 2 部分中的第 2 部分: Java Math 类中的新功能https://www.ibm.co

2017-08-24 16:15:00 1059

转载 在C++中利用反射和简单工厂模式实现业务模块解耦

2015年03月04日在C++中利用反射和简单工厂模式实现业务模块解耦在设计一个系统框架的时候往往需要划分各个模块、组件,抽象出公共的部分,尽量避免耦合,以利于以后的扩展和复用。在这方面,JAVA的很多特性在利用各种设计模式的时候会非常容易,而在C++中就需要自己去一步步实现。业务说明为了便于说明,举一个简单的例子。假设现在有一个项目需要建立一个和银行交

2017-08-19 14:30:34 995 1

转载 deadline_timer使用说明

【Boost】boost库asio详解四——deadline_timer使用说明分类:移动开发/IOS/文章【Boost】boost库asio详解4——deadline_timer使用说明deadline_timer和socket一样,都用io_service作为构造函数的参数。也即,在其上进行异步操作,都将导致和io_service所包含的iocp相关联。这同样意味着在析构 io...

2017-08-09 17:44:57 2346

转载 boost时间的操作

[Boost]boost的时间和日期处理-(2)时间的操作本篇紧接着boost上篇叙述Boost::DateTime的时间处理。在C++中,常见的时间有time_t, FILETIME和tm,而boost中用ptime。构造ptime1.ptime的构造函数有四种:1: using namespace boost::posix_time;2

2017-08-09 11:18:43 511

转载 boost的时间和日期处理1

[Boost]boost的时间和日期处理-(1)日期的操作http://www.cnblogs.com/yegoufromchongqing/archive/2013/01/11/2856168.htmlBoost.DateTime库提供了时间日期相关的计算、格式化、转换、输入输出等等功能,为C++的编程提供了便利。不过它有如下特点:1. Boost.DateTime 只支

2017-08-09 11:04:10 319

转载 网络编程中常见地址结构与转换(IPv4/IPv6)

网络编程中常见地址结构与转换(IPv4/IPv6)1. sockaddr/sockaddr_in/in_addr (IPv4)、sockaddr6_in/in6_addr/addrinfo (IPv6)struct sockaddr {  http://www.cnblogs.com/sunada2005/p/3240724.html

2017-07-20 10:08:27 1517

转载 优化做缓存用的std::map<std::string, X> (自己的C++小工具系列1)

https://zhuanlan.zhihu.com/p/24980767 优化做缓存用的std::map<std::string, X> (自己的C++小工具系列1)

2017-07-08 17:54:20 4956 1

原创 CppWindowsService

CppWindowsServicehttps://code.msdn.microsoft.com/windowsapps/CppWindowsService-cacf4948

2017-07-05 17:01:12 728

转载 Unknown compiler version while compiling Boost with MSVC 14.0 (VS 2015)

Answer:Latest (at the time of posting this answer) Boost 1.58 does support MSVC 14.0 Preview which was the latest MS compiler at the time of Boost 1.58 release. Now, the latest version of Visual S

2017-07-03 15:56:59 2227

转载 Git提交空目录

git和 svn不同,仅仅跟踪文件的变动,不跟踪目录。所以,一个空目录,如果里面没有文件,即便 git add这个目录,另外在别处 check out 的时候,是没有这个空目录的。只跟踪文件变化,不跟踪目录,这么设计是有原因的。但这会带来一些小麻烦。有时候,确实需要在代码仓库中保留某个空目录。比如测试时需要用到的空目录。下面来看看如何解决。其实这里有两种情况:一、目

2017-06-29 09:58:24 44979

转载 https://stackoverflow.com/questions/37505484/cant-exit-git-commit-in-windows

0down votefavoriteFrom Powershell I've called git commit and it presents me withI typed the commit message (in yellow) but I have no idea what to do next. Pressing Enter

2017-06-28 15:16:39 946

原创 virtual override new之派生

C# 语言经过专门设计,以便不同库中的基类与派生类之间的版本控制可以不断向前发展,同时保持向后兼容。这具有多方面的意义。例如,这意味着在基类中引入与派生类中的某个成员具有相同名称的新成员在 C# 中是完全支持的,不会导致意外行为。它还意味着类必须显式声明某方法是要重写一个继承方法,还是一个隐藏具有类似名称的继承方法的新方法。在 C# 中,派生类可以包含与基类方法同名的方法。基类方法

2015-08-10 15:29:14 439

转载 How to Customize Common Open File Dialog Box Places Bar in Windows

How to Customize Common Open File Dialog Box Places Bar in Windows   InformationWhen you save or open a file in an application that uses Windows common dialog box, the Places bar on the

2015-07-17 14:20:12 957

转载 ATL和WTL中的消息反射

转载地址:  http://www.cppblog.com/qinqing1984/archive/2010/06/14/117872.htmlWTL是窗口模板库(Windows Library Template)的简称,是一套轻量级C++ GUI库,因为它使用了C++模板封装了窗口界面操作API和消息映射处理,它扩展了ATL中的UI窗口部分,并支持如下更多的功能特性:    (1) 

2015-07-16 16:03:14 1039

原创 IFileDialog-》IServiceProvider-》IShellView-》IFolderView-》IShellItemArray

一段代码,诉说一段历程{HRESULT hr = S_FALSE;IServiceProvider* sp = NULL;hr = pfd->QueryInterface(IID_IServiceProvider,(void **)&sp);if (SUCCEEDED(hr) && sp){IShellBrowser* sb = NULL;hr = sp->Quer

2015-07-13 14:43:49 1450

原创 解析duilib 消息处理函数-笔记1

界面消息传递机制, 通过宏定义点击事件处理方法。来看一下 主要消息的处理宏展开是什么情况 wndProc-----> HandleMessage--->func1....funcn----->CpaintManagerUI:MessageHandleer ----->CwindowWnd::HandleMessage:(1)声明了几个函数参数LRESULT Ha

2015-06-04 16:15:52 1563

翻译 随便抄一点

(1)先设置下menu要显示的位置- (void)setTargetRect:(CGRect)targetRect               inView:(UIView *)targetViewParameterstargetRectA rectangle that defines the area that

2015-04-30 21:41:39 433

转载 Uiwebvie笔记 之初始化

NSString* path = [[NSBundle mainBundle] pathForResource:@"help" ofType:@"html"];NSURL* url = [NSURL fileURLWithPath:path];NSError* err = nil;NSString* s = [NSString stringWithContentsOfURL:url

2014-09-27 22:03:24 660

原创 帮忙用c语言写写关于死锁的程序

 

2006-11-22 10:41:00 1809

Ida55反汇编

逆向反汇编windows。mac 必备软件。版本有点老凑合着用吧

2017-06-10

SlickEditv2 Windows_keyge

lickEdit 2015 is a cross-platform, multi-language code editor that gives programmers the ability to code in over 50 languages on 9 platforms. This latest version builds on the company’s 28 years of experience in enabling developers and development teams to create, navigate, modify, build, and debug code faster and more accurately. SlickEdit 2015 delivers a wide range of powerful new features and existing feature enhancements.

2016-05-21

Pro Multithreading and Memory Management for iOS and OS X

This work is subject to copyright. All rights are reserved by the Publisher, whether the whole or part of the material is concerned, specifically the rights of translation, reprinting, reuse of illustrations, recitation, broadcasting, reproduction on microfilms or in any other physical way, and transmission or information storage and retrieval, electronic adaptation, computer software, or by similar or dissimilar methodology now known or hereafter developed. Exempted from this legal reservation are brief excerpts in connection with reviews or scholarly analysis or material supplied specifically for the purpose of being entered and executed on a computer system, for exclusive use by the purchaser of the work. Duplication of this publication or parts thereof is permitted only under the provisions of the Copyright Law of the Publisher's location, in its current version, and permission for use must always be obtained from Springer. Permissions for use may be obtained through RightsLink at the Copyright Clearance Center. Violations are liable to prosecution under the respective Copyright Law.

2014-09-29

游戏内核保护源码

转载看雪网上的源码 发布出来供大家免费下载

2013-08-15

沙箱Sandboxie 逆向完整源码

沙箱Sandboxie v3.40 逆向完整源码

2013-08-15

c接口与实现 源代码 普林斯顿大学下载

书中描述的24个高效的API帮助你深入理解C语言,资源内包含作者详细描述的24个借口和它们的实现细节,还有一些实例可以参考

2010-12-01

文件过滤系统框架 Windows文件系统过滤驱动开发教程

01.Windows文件系统过滤驱动开发教程(1) .doc 02.Windows文件系统过滤驱动开发教程(2) .do 03.Windows文件系统过滤驱动开发教程(3) .doc 04.Windows文件系统过滤驱动开发教程(4).doc 05.Windows文件系统过滤驱动开发教程(5).doc 06.Windows文件系统过滤驱动程序教程(6).doc 07.Windows文件系统过滤驱动程序教程(7). 08.Windows文件系统过滤驱动程序教程(8) 09.Windows文件系统过滤驱动程序教程(9) 10.Windows文件系统过滤驱动程序教程(10).doc 11.Windows文件系统过滤驱动开发教程(11) .doc

2010-11-23

ddk中的文件系统源码

Windows 2000 IFS 开发工具包 Windows 2000 IFS 开发工具包已经过时,更新的功能可以从 Server 2003 IFS 开发工具包取得。RDR 问题已在 Windows Server 2003 IFS 组件中解决。协助转移文件系统 Filter 驱动程序从 Windows NT&reg; 4.0 移转至 Windows 2000,帮助您将文件系统 Filter 驱动程序由 Windows 2000 迁移至 Windows XP,制造更稳定的驱动程序,与其他驱动程序更协调。

2010-11-06

sfilter改装的过滤驱动

点点滴滴点点滴滴点点滴滴点点滴滴点点滴滴点点滴滴

2010-10-23

VASSIRT vc visualassist

visualassistx10VisualAssistX10.6.1823.7.zip

2010-06-04

windows NT File System Internals

~ZIP压缩格式 此为网上收集,实属不易。 虽沿未参阅,但精品,收之! windows nt file system internal 此书附有讲解中相应源代码! 唉,喜欢看的,教我学习啊!^_^ 与WINDOWS 内核有关的

2010-04-13

标准c函数库 C标准库源代码

C标准库源代码 C标准库源代码 C标准库源代码 C标准库源代码

2010-04-13

深入解析windows操作系统

本书是一本英文版的window Internals 书籍。

2010-04-13

usb2.0技术参数接口规范

USB 是一种支持热插拔的高速串行传输总线,它使用差分信号来传输数据,最高速度 可达 480Mb/S。USB 支持 “总线供电”和“自供电”两种供电模式。在总线供电模式下, 设备最多可以获得500mA 的电流。USB2.0 被设计成为向下兼容的模式,当有全速(USB 1.1 ) 或者低速 (USB 1.0 )设备连接到高速 (USB 2.0 )主机时,主机可以通过分离传输来支持它 们。一条 USB 总线上,可达到的最高传输速度等级由该总线上最慢的 “设备”决定,该设 备包括主机、HUB 以及USB 功能设备。

2010-03-25

MFC编程技术资料 DLLbiancheng

和好的一部MFC学习例子和文章快速掌握MFC学习

2010-03-23

windows内核安全编程源码

windows内核安全编程, 鼠标键盘过滤驱动, ntis驱动 源码

2010-03-15

LDasm反汇编c文件

一个很好的反汇编c文件,常用与驱动开发。

2010-01-21

vs 助手适用于vs2005

使用于vs2005,一款很好的软件,以提高编程效率。

2010-01-11

驱动开发必备——wrk1.2

WRK的全称是“Windows Research Kernel”,它是微软为高校操作系统课程提供的可修改和跟踪的操作系统教学平台。它给出了Windows这个成功的商业操作系统的内核大部分代码,可以对其进行修改、编译,并且可以用这个内核启动Windows操作系统。可让学生将操作系统基本原理和商业操作系统内核联系起来,进一步加深对操作系统整体的理解。

2009-12-10

ddkwizard ddkwizard vs2003vs2008

DDKWizard adds a new subfolder in the project creation wizard - see figure 2 - and presents all supported project types there. Currently these are Driver, Empty Driver, Native Application, Win32 console application and Win32 DLL. In either case you just choose the type of project to create, give the name of the project and/or solution as well as other options (at the bottom) and you are being presented the wizard dialog (see figure 1). From the wizard dialog you choose the DDKBUILD script you want to use, the DDK or multiple DDKs as well as the other options. If you are curious about the Property Sheet feature, please download the manual and read the respective section there.

2009-10-23

EasyHook Documentation

This is preliminary documentation and is subject to change.]

2009-09-30

easyhook2.5program

使用VS C++2005时出现一个错误:Project : error PRJ0019: 工具从"正在执行预生成事件..."

2009-09-30

easyhook2.5source hook

This page contains the latest version of the Irvine16 and Irvine32 link libraries, plus all of the book's example programs.

2009-09-30

IDA_Pro_Book

这个是我下载的IDA_Pro_Book完整版,很好使用!

2009-07-09

Intel 64及IA-32架构软件开发者手册

INTEL软件架构手册软件大小:9.4MB 更新时间:2007-10-18 软件类型:国外软件/共享软件 环境:Win9X/WinXP/Win2K/Win2003 软件语言:英文软件

2009-04-15

C++模板指南

C++程序员必须具备的案头书籍!~

2008-06-27

学生成绩管理系统

JAVA的学生成绩管理系统!

2008-05-16

试题库论文

我的毕业设计,用.NET做的!希望对你们有用!

2008-05-16

MYSQLJAVA的驱动

这是一个与JAVA的 JSP开发有关的驱动!

2008-03-23

处理SQL安装日志出错

如果你在 安装 SQL2000失败出现日志错误的 信息 清使用我的<br> 批处理文件!

2008-03-23

HIBERNATE

一个不错的 入门手册!

2008-03-23

sqlserver驱动

JSP开发使用的SQL2000数据库使用

2008-03-05

Tomcat

shiyong de tomcat<br>新建classpath<br>.;%java_home%\lib\tools.jar;%catalina_home%\common\lib\servlet-api.jar;%catalina_home%\common\lib\jsp-api.jar<br>新建catalina_home c:\tomcat<br>新建java_home c:\jdk<br>在path后加 ;C:\mysql\bin

2008-03-05

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除