资源列表
HOOK
- 如何做到程序可以避开键盘HOOK
c
- 用c实现的微型数据库 用c实现的微型数据库
WinXPDlg
- 一个可以实现winxp风格按钮的小程序,帮助初学者理解VC的图形界面编程
clock
- 数字钟表,提供三个精美样式的钟表,自动显示当前时间
fenxiPEFILE
- 一个功能齐全的分析windows平台PE文件格式的程序源代码。
1
- 实现客户机类,在头文件client.h中声明类,在文件client.cpp中实现
Thread
- 实现进程调度演示,提供SJF,HRN,FCFS,3种调度方案的选择。
simpleopt-doc
- Cross platform command line parsing and file globbing By brofield. Parse almost any of the standard command line formats in use today with the same code on both Windows and Un*x. Includes full processing of filename wildcards (glob). Fully
simpleopt-2.8
- Cross platform command line parsing and file globbing By brofield. Parse almost any of the standard command line formats in use today with the same code on both Windows and Un*x. Includes full processing of filename wildcards (glob). Fully
vsListview
- vsListview Beta 0.9 增加背景功能及右键菜单.rar
file
- VB打造超酷个性化菜单(一个类文件).rar
sum
- code segment assume cs:code sum_p proc near jcxz exit add ax,cx dec cx call sum_p exit: ret sum_p endp start: mov ax,2000h mov ds,ax mov ax,0 mov si,0 mov cx,7 call sum_p mov [si],ax mov ah,4ch int 21h