自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

jangdong的专栏

ObjectARX开发 C/ C++ MFC Win32 API 学习

  • 博客(7)
  • 资源 (6)
  • 收藏
  • 关注

转载 Dynamic-Link Library Best Practices

Dynamic-Link Library Best PracticesUpdated:May 17, 2006In this articleGeneral Best PracticesDeadlocks Caused by Lock Order InversionBest Practices for SynchronizationRecommendationsImportant APIsDllMa...

2018-06-20 14:30:39 186

原创 c++提取应用程序中的图标(绘制图标ico)

//提取应用程序中的图标     CSttring m_strIcoPath = L"xx.exe";     CRect  m_rcItem; //绘制区域 HICON hIcon = ::ExtractIcon(GetModuleHandle(NULL), m_strIcoPath, 0); if (hIcon != NULL) { Graphics graphics(hDC); Bit...

2018-06-20 10:36:40 5623

原创 c++ 枚举系统字体

//1、定义: CStringArray m_mSysFonts //2、回调: static INT CALLBACK NEnumFontNameProc(LOGFONT *plf, TEXTMETRIC* /*ptm*/, INT /*nFontType*/, LPARAM lParam/**/); HDC hdc = ::GetDC(*this); int nRet = ::EnumFont...

2018-06-19 10:07:35 2166 1

原创 windbg 分析dmp文件之-空指针!!

1、测试程序#include "stdafx.h"int _tmain(int argc, _TCHAR* argv[]){ int *pTest = NULL; printf("%d",*pTest); return 0;}2、自动生成dmp代码 自行copy,这里略。3、启动windbdg     1)、配置pdb位置。        2)、配置源码位置。4、打开demo2.dmp5、在win...

2018-06-15 17:16:56 985

原创 遍历进程运行线程数

#include "stdafx.h"#include <Windows.h>#include <TlHelp32.h>#include <stdio.h>#include <stdlib.h>void TestProcessGetThreadNumber() { int i = 0; char Buff[9]; PROCESSENTRY32 pe3...

2018-06-15 16:45:49 769

原创 枚举本地盘符

// dirtest.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include <Windows.h>#include <string.h>#define _WTL_NO_CSTRING#include <atlbase.h>#include &...

2018-06-15 16:42:53 749

原创 64位系统文件 重定向问题(遍历system32目录文件问题)

文件重定向同样,文件系统也存在2个独立的部分(1)32位程序对%systemroot%/system32 的操作存在重定向32位文件会被重定向到%systemroot%/SysWOW64(2)64位程序对文件操作不存在重定向(3)补充%systemroot%/SysWOW64下的都为32位程序,在里面可以找到32位的cmd、calc关闭重定向即可!!eg:BOOL IsWow64(){ typed...

2018-06-15 16:35:22 2156

rpc调用的一个demo

这个一个rpc远程过程调用,根据网上资料搜集写的一个demo,仅供参考 !!

2018-07-05

dll注入例子

该例子是利用CreateRemoteThread 实行远程代码注入的一个demo.

2018-07-05

boost库中文帮助文档1.4.1

boost库中文帮助文档1.4.1 值得一看

2014-07-29

DWGDirectX帮助文档

DWGDirectX帮助文档 opendwg官网提供的帮助文档

2014-07-29

AcEdInputPointMonitor CAD鼠标提示信息反应器

arx编程 AcEdInputPointMonitor CAD鼠标提示信息反应器 用来修改重载CAD鼠标点处显示的实体信息

2014-07-29

MFC Windows程序设计(第二版)(中文版)源代码

MFC Windows程序设计(第二版)(中文版)源代码

2013-09-22

空空如也

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

TA关注的人

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