自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 资源 (5)
  • 问答 (1)
  • 收藏
  • 关注

原创 VC玻璃特效窗口

#include #include #include #define KeyDown(vk_code) ((GetAsyncKeyState(vk_code) & 0x8000) ? 1 : 0)#define Msg(info) MessageBox(NULL,info,"message",MB_OK)#define ErrorMsg(info) MessageBox(N

2013-01-18 20:40:32 801

转载 ImageMagick

[转载]ImageMagick 经验帖 (2010-07-08 17:16:55)原文地址:经验帖" style="text-decoration:initial; color:rgb(206,53,53)">ImageMagick 经验帖作者:paper0023/*****************************************

2013-01-16 00:05:25 1270

转载 C++ 中隐藏DOS调用的命令行窗口

C++ 中隐藏DOS调用的命令行窗口原文地址:http://hi.baidu.com/kalcaddle/item/cb83d70f720d27e6f45ba689      我演示了一下在MFC程序中怎么应用DOS的dir的命令,可是我们遇到了需要解决的问题,首先就是文件dir.txt的残留问题,其实这个问题很简单,我们也可以用dos的del命令在操作

2013-01-12 09:47:13 1194

原创 最简单的操作系统

运行于虚拟机汇编风格:NASMorg 0x7c00jmp begin_real_modeboot_msg:db "Load boot..."pm_msg:db "go to protected mode..." printmsg:mov ax,0x1301; Service numbermov dx,0

2013-01-01 19:14:17 430

原创 汇编练习-3

虚拟机上运行的汇编org 07c00hbuf: db "000011111",0start:mov ax,csmov ds,axmov es,axmov ss,axmov sp,8000hmov di,bufmov ax,1246hcall print_hexmov

2013-01-01 19:11:33 362

原创 指针的控制范围

#include using namespace std;void main(){ int a[3][4]={ {1,2,3,4}, {5,6,7,8}, {9,10,11,12} }; int **p=(int**)&a; // p的作用不等效于a,所以无法对p这样引用 p[?][?] cout<<"a: "<<a<<endl; cout<<"a[0]: "<<a[0]<

2013-01-01 19:07:50 515

Direct2D绘制多种风格的线条

使用Direct2D高效(比GDI,GDI+快几倍)绘制多种风格的线条,作者使用VS2012编译,压缩包内仅包含一个cpp文件,所以方便转换到其他VisualStudio版本.zip

2016-01-02

WTL91 (Window Template Library)

如果编译器提示找到atlapp.h头文件,你可以下载这个压缩包,解压其到某个目录,并在编译中设置头文件包含目录便可。

2015-11-21

VS2008配置GTK

详解说明WINDOW7系统下VS2008如何安装GTK,内有GTK的安装文件,无需再下载任何文件,并在文档中附有GTK的源码示例

2013-07-04

reader(first version)

a reader for computer that you can download and rewrite it if you want, send e-mail to me if you have any questions about this source...

2012-12-11

GTK+2.0图形界面编程示例

this tutorial supports some instances about gtk+ graphics interface programming.

2012-06-19

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

TA关注的人

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