实例介绍
王艳平 WINDOWS程序设计第二版完整源码
【实例截图】
【核心代码】
Windows程序设计(第2版)王艳平(光盘源码)
└── Windows程序设计(第2版) 王艳平(光盘)
├── SkinMagic
│ └── setup.exe
├── VC++ .NET使用说明
│ └── VC++ .NET使用说明.doc
├── 配书代码
│ ├── 01CodeStyle
│ │ ├── 01CodeStyle.cpp
│ │ ├── 01CodeStyle.dsp
│ │ ├── 01CodeStyle.dsw
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── 01CodeStyle.exe
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── 01FirstApp
│ │ ├── 01FirstApp.cpp
│ │ ├── 01FirstApp.dsp
│ │ ├── 01FirstApp.dsw
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ ├── 01FirstApp.exe
│ │ │ ├── 01FirstApp.obj
│ │ │ ├── 01FirstApp.pch
│ │ │ ├── StdAfx.obj
│ │ │ └── vc60.idb
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── 01UseAPI
│ │ ├── 01UseAPI.cpp
│ │ ├── 01UseAPI.dsp
│ │ ├── 01UseAPI.dsw
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── 01UseAPI.exe
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── 02CreateProcess
│ │ ├── 02CreateProcess.cpp
│ │ ├── 02CreateProcess.dsp
│ │ ├── 02CreateProcess.dsw
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── 02CreateProcess.exe
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── 02ExitThread
│ │ ├── 02ExitThread.cpp
│ │ ├── 02ExitThread.dsp
│ │ ├── 02ExitThread.dsw
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── 02ExitThread.exe
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── 02MemRepair
│ │ ├── 02MemRepair.cpp
│ │ ├── 02MemRepair.dsp
│ │ ├── 02MemRepair.dsw
│ │ ├── MemRepair.h
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── 02MemRepair.exe
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── 02ProcessList
│ │ ├── 02ProcessList.cpp
│ │ ├── 02ProcessList.dsp
│ │ ├── 02ProcessList.dsw
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── 02ProcessList.exe
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── 02TerminateProcess
│ │ ├── 02TerminateProcess.cpp
│ │ ├── 02TerminateProcess.dsp
│ │ ├── 02TerminateProcess.dsw
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── 02TerminateProcess.exe
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── 02Testor
│ │ ├── 02Testor.cpp
│ │ ├── 02Testor.dsp
│ │ ├── 02Testor.dsw
│ │ ├── Debug
│ │ │ └── 02Testor.exe
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── 02Testor.exe
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── 03CountErr
│ │ ├── 03CountErr.dsp
│ │ ├── 03CountErr.dsw
│ │ ├── CountErr.cpp
│ │ └── Release
│ │ └── 03CountErr.exe
│ ├── 03CriticalSection
│ │ ├── 03CriticalSection.dsp
│ │ ├── 03CriticalSection.dsw
│ │ ├── CriticalSection.cpp
│ │ └── Release
│ │ └── 03CriticalSection.exe
│ ├── 03CThreadLocal
│ │ ├── 03CThreadLocal.dsp
│ │ ├── 03CThreadLocal.dsw
│ │ ├── MyTls.cpp
│ │ └── Release
│ │ └── 03CThreadLocal.exe
│ ├── 03CWinThread
│ │ ├── 03CWinThread.dsp
│ │ ├── 03CWinThread.dsw
│ │ ├── MyThread.cpp
│ │ └── Release
│ │ └── 03CWinThread.exe
│ ├── 03EventDemo
│ │ ├── 03EventDemo.dsp
│ │ ├── 03EventDemo.dsw
│ │ ├── EventDemo.cpp
│ │ └── Release
│ │ └── 03EventDemo.exe
│ ├── 03FileFind
│ │ ├── 03FileFind.dsp
│ │ ├── 03FileFind.dsw
│ │ ├── FileFind.cpp
│ │ └── Release
│ │ └── 03FileFind.exe
│ ├── 03InterlockDemo
│ │ ├── 03InterlockDemo.dsp
│ │ ├── 03InterlockDemo.dsw
│ │ ├── InterlockDemo.cpp
│ │ └── Release
│ │ ├── 03InterlockDemo.exe
│ │ ├── 03InterlockDemo.pch
│ │ ├── InterlockDemo.obj
│ │ └── vc60.idb
│ ├── 03PriorityDemo
│ │ ├── 03PriorityDemo.dsp
│ │ ├── 03PriorityDemo.dsw
│ │ ├── PriorityDemo.cpp
│ │ └── Release
│ │ └── 03PriorityDemo.exe
│ ├── 03RapidFinder
│ │ ├── 03RapidFinder.dsp
│ │ ├── 03RapidFinder.dsw
│ │ ├── MyFinder.cpp
│ │ ├── RapidFinder.cpp
│ │ ├── RapidFinder.h
│ │ └── Release
│ │ └── 03RapidFinder.exe
│ ├── 03ThreadDemo
│ │ ├── 03ThreadDemo.dsp
│ │ ├── 03ThreadDemo.dsw
│ │ ├── Release
│ │ │ ├── 03ThreadDemo.exe
│ │ │ ├── 03ThreadDemo.pch
│ │ │ ├── ThreadDemo.obj
│ │ │ └── vc60.idb
│ │ └── ThreadDemo.cpp
│ ├── 03UseTLS
│ │ ├── 02UseTLS.cpp
│ │ ├── 03UseTLS.dsp
│ │ ├── 03UseTLS.dsw
│ │ └── Release
│ │ └── 03UseTLS.exe
│ ├── 04Clock
│ │ ├── 04Clock.dsp
│ │ ├── 04Clock.dsw
│ │ ├── Clock.cpp
│ │ ├── Clock.rc
│ │ ├── Main.ico
│ │ ├── Release
│ │ │ └── 04Clock.exe
│ │ └── resource.h
│ ├── 04FirstWindow
│ │ ├── 04FirstWindow.cpp
│ │ ├── 04FirstWindow.dsp
│ │ ├── 04FirstWindow.dsw
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── 04FirstWindow.exe
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── 04LocalTime
│ │ ├── 04LocalTime.dsp
│ │ ├── 04LocalTime.dsw
│ │ ├── LocalTime.cpp
│ │ └── Release
│ │ └── 04LocalTime.exe
│ ├── 04SimpleTyper
│ │ ├── 04SimpleTyper.dsp
│ │ ├── 04SimpleTyper.dsw
│ │ ├── icon1.ico
│ │ ├── Release
│ │ │ └── 04SimpleTyper.exe
│ │ ├── resource.h
│ │ ├── Typer.cpp
│ │ └── typer.rc
│ ├── 04SineWave
│ │ ├── 04SineWave.dsp
│ │ ├── 04SineWave.dsw
│ │ ├── Release
│ │ │ └── 04SineWave.exe
│ │ └── SineWave.cpp
│ ├── 04TellToClose
│ │ ├── 04TellToClose.cpp
│ │ ├── 04TellToClose.dsp
│ │ ├── 04TellToClose.dsw
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── 04TellToClose.exe
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── 04TimerDemo
│ │ ├── 04TimerDemo.dsp
│ │ ├── 04TimerDemo.dsw
│ │ ├── Release
│ │ │ └── 04TimerDemo.exe
│ │ └── TimerDemo.cpp
│ ├── 04UseDC
│ │ ├── 04UseDC.dsp
│ │ ├── 04UseDC.dsw
│ │ ├── Release
│ │ │ └── 04UseDC.exe
│ │ └── UseDC.cpp
│ ├── 04Win32AppDemo
│ │ ├── 04Win32AppDemo.cpp
│ │ ├── 04Win32AppDemo.dsp
│ │ ├── 04Win32AppDemo.dsw
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── 04Win32AppDemo.exe
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── 05CHandleMap
│ │ ├── 05CHandleMap.dsp
│ │ ├── 05CHandleMap.dsw
│ │ ├── CHandleMap.cpp
│ │ └── Release
│ │ └── 05CHandleMap.exe
│ ├── 05CPlexDemo
│ │ ├── 05CPlexDemo.dsp
│ │ ├── 05CPlexDemo.dsw
│ │ ├── CPlexDemo.cpp
│ │ └── Release
│ │ └── 05CPlexDemo.exe
│ ├── 05DynClass
│ │ ├── 05DynClass.dsp
│ │ ├── 05DynClass.dsw
│ │ ├── DynClass.cpp
│ │ └── Release
│ │ └── 05DynClass.exe
│ ├── 05DynCreate
│ │ ├── 05DynCreate.dsp
│ │ ├── 05DynCreate.dsw
│ │ ├── DynCreate.cpp
│ │ └── Release
│ │ └── 05DynCreate.exe
│ ├── 05MapsDemo
│ │ ├── 05MapsDemo.dsp
│ │ ├── 05MapsDemo.dsw
│ │ ├── MapsDemo.cpp
│ │ └── Release
│ │ └── 05MapsDemo.exe
│ ├── 05OutputDebugString
│ │ ├── 05OutputDebugString.dsp
│ │ ├── 05OutputDebugString.dsw
│ │ ├── OutputDebugString.cpp
│ │ └── Release
│ │ └── 05OutputDebugString.exe
│ ├── 05ProcessModule
│ │ ├── 05ProcessModule.dsp
│ │ ├── 05ProcessModule.dsw
│ │ ├── ProcessModule.cpp
│ │ └── Release
│ │ └── 05ProcessModule.exe
│ ├── 05RTTI
│ │ ├── 05RTTI.dsp
│ │ ├── 05RTTI.dsw
│ │ ├── Release
│ │ │ └── 05RTTI.exe
│ │ └── RTTI.cpp
│ ├── 05TypeIdentify
│ │ ├── 05TypeIdentify.dsp
│ │ ├── 05TypeIdentify.dsw
│ │ ├── Release
│ │ │ └── 05TypeIdentify.exe
│ │ └── TypeIdentify.cpp
│ ├── 05UseFrame
│ │ ├── 05UseFrame.dsp
│ │ ├── 05UseFrame.dsw
│ │ ├── Release
│ │ │ └── 05UseFrame.exe
│ │ ├── UseFrame.cpp
│ │ └── UseFrame.h
│ ├── 06CreateExample
│ │ ├── 06CreateExample.dsp
│ │ ├── 06CreateExample.dsw
│ │ ├── Example.cpp
│ │ ├── Example.h
│ │ └── Release
│ │ └── 06CreateExample.exe
│ ├── 06Meminfo
│ │ ├── 06Meminfo.dsp
│ │ ├── 06Meminfo.dsw
│ │ ├── Meminfo.cpp
│ │ ├── Meminfo.h
│ │ ├── Meminfo.rc
│ │ ├── Release
│ │ │ └── 06Meminfo.exe
│ │ ├── resource.h
│ │ └── status.ico
│ ├── 06WinLooker
│ │ ├── 06WinLooker.dsp
│ │ ├── 06WinLooker.dsw
│ │ ├── ball-14.ico
│ │ ├── looker.cpp
│ │ ├── looker.h
│ │ ├── looker.rc
│ │ ├── MyButton.cpp
│ │ ├── MyButton.h
│ │ ├── Release
│ │ │ └── 06WinLooker.exe
│ │ ├── resource.h
│ │ └── target.cur
│ ├── 07ChildWnd
│ │ ├── 07ChildWnd.dsp
│ │ ├── 07ChildWnd.dsw
│ │ ├── PredefineClass.cpp
│ │ ├── PredefineClass.h
│ │ └── Release
│ │ └── 07ChildWnd.exe
│ ├── 07ComctlDemo
│ │ ├── 07ComctlDemo.dsp
│ │ ├── 07ComctlDemo.dsw
│ │ ├── ComctlDemo.cpp
│ │ ├── ComctlDemo.rc
│ │ ├── Release
│ │ │ └── 07ComctlDemo.exe
│ │ └── resource.h
│ ├── 07CommDlg
│ │ ├── 07CommDlg.dsp
│ │ ├── 07CommDlg.dsw
│ │ ├── CommDlg.cpp
│ │ ├── CommDlg.rc
│ │ ├── DirDialog.h
│ │ ├── Release
│ │ │ └── 07CommDlg.exe
│ │ └── resource.h
│ ├── 07ControlsDemo
│ │ ├── 07ControlsDemo.dsp
│ │ ├── 07ControlsDemo.dsw
│ │ ├── ACER.ICO
│ │ ├── Controls.cpp
│ │ ├── Controls.rc
│ │ ├── picture1.bmp
│ │ ├── picture2.bmp
│ │ ├── Release
│ │ │ └── 07ControlsDemo.exe
│ │ └── resource.h
│ ├── 07FirstDialog
│ │ ├── 07FirstDialog.dsp
│ │ ├── 07FirstDialog.dsw
│ │ ├── dialog.rc
│ │ ├── FirstDialog.cpp
│ │ ├── Release
│ │ │ └── 07FirstDialog.exe
│ │ └── resource.h
│ ├── 07MFCDemo
│ │ ├── 07MFCDemo.dsp
│ │ ├── 07MFCDemo.dsw
│ │ ├── MFCDemo.cpp
│ │ ├── MFCDemo.h
│ │ ├── MFCDemo.rc
│ │ ├── Release
│ │ │ └── 07MFCDemo.exe
│ │ └── resource.h
│ ├── 07MonitorDir
│ │ ├── 07MonitorDir.dsp
│ │ ├── 07MonitorDir.dsw
│ │ ├── corona.smf
│ │ ├── DirDialog.h
│ │ ├── eyes.ico
│ │ ├── MonitorDir.cpp
│ │ ├── MonitorDir.h
│ │ ├── MonitorDir.rc
│ │ ├── Release
│ │ │ └── 07MonitorDir.exe
│ │ ├── resource.h
│ │ ├── SkinMagicLib.h
│ │ ├── SkinMagicLibMD6Trial.lib
│ │ └── SkinMagicLibMT6Trial.lib
│ ├── 07ProgressDemo
│ │ ├── 07ProgressDemo.dsp
│ │ ├── 07ProgressDemo.dsw
│ │ ├── ProgressDemo.cpp
│ │ ├── ProgressDemo.rc
│ │ ├── Release
│ │ │ └── 07ProgressDemo.exe
│ │ └── resource.h
│ ├── 07UseWizard
│ │ ├── 07UseWizard.cpp
│ │ ├── 07UseWizardDlg.cpp
│ │ ├── 07UseWizardDlg.h
│ │ ├── 07UseWizard.dsp
│ │ ├── 07UseWizard.dsw
│ │ ├── 07UseWizard.h
│ │ ├── 07UseWizard.rc
│ │ ├── Release
│ │ │ └── 07UseWizard.exe
│ │ ├── res
│ │ │ ├── 07UseWizard.ico
│ │ │ └── 07UseWizard.rc2
│ │ ├── Resource.h
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── 08FileCutter
│ │ ├── 08FileCutter.dsp
│ │ ├── 08FileCutter.dsw
│ │ ├── Cutter.cpp
│ │ ├── Cutter.h
│ │ ├── DirDialog.h
│ │ ├── FileCutter.cpp
│ │ ├── FileCutter.h
│ │ ├── FileCutter.ico
│ │ ├── FileCutter.rc
│ │ ├── Release
│ │ │ └── 08FileCutter.exe
│ │ └── resource.h
│ ├── 08ReadBMP
│ │ ├── 08ReadBMP.dsp
│ │ ├── 08ReadBMP.dsw
│ │ ├── ReadBMP.cpp
│ │ ├── ReadBMP.h
│ │ ├── ReadBMP.rc
│ │ ├── Release
│ │ │ └── 08ReadBMP.exe
│ │ ├── resource.h
│ │ └── Tree4.ico
│ ├── 08SelfRun
│ │ ├── 08SelfRun.dsp
│ │ ├── 08SelfRun.dsw
│ │ ├── Release
│ │ │ └── 08SelfRun.exe
│ │ └── SelfRun.cpp
│ ├── 08ShareMem
│ │ ├── 08ShareMem.dsp
│ │ ├── 08ShareMem.dsw
│ │ ├── Release
│ │ │ └── 08ShareMem.exe
│ │ ├── ShareMem.cpp
│ │ └── ShareMemory.h
│ ├── 08ValidPE
│ │ ├── 08ValidPE.dsp
│ │ ├── 08ValidPE.dsw
│ │ ├── Release
│ │ │ └── 08ValidPE.exe
│ │ ├── ValidPE.cpp
│ │ └── ValidPE.h
│ ├── 09APISpyApp
│ │ ├── 09APISpyApp.dsp
│ │ ├── 09APISpyApp.dsw
│ │ ├── 09APISpyLib.dll
│ │ ├── APISpyApp.cpp
│ │ ├── APISpyApp.h
│ │ ├── APISpyApp.ico
│ │ ├── APISpyApp.rc
│ │ ├── Release
│ │ │ ├── 09APISpyApp.exe
│ │ │ ├── 09APISpyApp.pch
│ │ │ ├── 09APISpyLib.dll
│ │ │ ├── APISpyApp.obj
│ │ │ ├── APISpyApp.res
│ │ │ ├── RemThreadInjector.obj
│ │ │ └── vc60.idb
│ │ ├── RemThreadInjector.cpp
│ │ ├── RemThreadInjector.h
│ │ ├── resource.h
│ │ └── ShareMemory.h
│ ├── 09APISpyLib
│ │ ├── 09APISpyLib.dsp
│ │ ├── 09APISpyLib.dsw
│ │ ├── APIHook.cpp
│ │ ├── APIHook.h
│ │ ├── APISpyLib.cpp
│ │ ├── APISpyLib.h
│ │ ├── Release
│ │ │ └── 09APISpyLib.dll
│ │ └── ShareMemory.h
│ ├── 09DllDemo
│ │ ├── 09DllDemo.cpp
│ │ ├── 09DllDemo.dsp
│ │ ├── 09DllDemo.dsw
│ │ ├── 09DllDemo.h
│ │ ├── DllDemo.def
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ ├── 09DllDemo.dll
│ │ │ └── 09DllDemo.lib
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── 09HookDemo
│ │ ├── 09HookDemo.dsp
│ │ ├── 09HookDemo.dsw
│ │ ├── Debug
│ │ │ └── 09HookDemo.exe
│ │ ├── HookDemo.cpp
│ │ └── Release
│ │ └── 09HookDemo.exe
│ ├── 09HookTermProApp
│ │ ├── 09HookTermProApp.dsp
│ │ ├── 09HookTermProApp.dsw
│ │ ├── 09HookTermProLib.dll
│ │ ├── 09HookTermProLib.lib
│ │ ├── HookTermProApp.cpp
│ │ ├── HookTermProApp.h
│ │ ├── HookTermProApp.ICO
│ │ ├── HookTermProApp.rc
│ │ ├── Release
│ │ │ ├── 09HookTermProApp.exe
│ │ │ └── 09HookTermProLib.dll
│ │ └── resource.h
│ ├── 09HookTermProLib
│ │ ├── 09HookTermProLib.dsp
│ │ ├── 09HookTermProLib.dsw
│ │ ├── 09HookTermProLib.ncb
│ │ ├── 09HookTermProLib.opt
│ │ ├── APIHook.cpp
│ │ ├── APIHook.h
│ │ ├── HookTermProLib.cpp
│ │ ├── HookTermProLib.def
│ │ └── Release
│ │ ├── 09HookTermProLib.dll
│ │ └── 09HookTermProLib.lib
│ ├── 09ImportDemo
│ │ ├── 09DllDemo.dll
│ │ ├── 09DllDemo.h
│ │ ├── 09DllDemo.lib
│ │ ├── 09ImportDemo.dsp
│ │ ├── 09ImportDemo.dsw
│ │ ├── ImportDemo.cpp
│ │ └── ImportDemo.def
│ ├── 09ImportTable
│ │ ├── 09ImportTable.dsp
│ │ ├── 09ImportTable.dsw
│ │ ├── ImportTable.cpp
│ │ └── Release
│ │ └── 09ImportTable.exe
│ ├── 09KeyHookApp
│ │ ├── 09KeyHookApp.dsp
│ │ ├── 09KeyHookApp.dsw
│ │ ├── 09KeyHookLib.dll
│ │ ├── 09KeyHookLib.lib
│ │ ├── KeyHookApp.cpp
│ │ ├── KeyHookApp.h
│ │ ├── KeyHookApp.ICO
│ │ ├── KeyHookApp.rc
│ │ ├── Release
│ │ │ ├── 09KeyHookApp.exe
│ │ │ └── 09KeyHookLib.dll
│ │ └── resource.h
│ ├── 09KeyHookLib
│ │ ├── 09KeyHookLib.dsp
│ │ ├── 09KeyHookLib.dsw
│ │ ├── KeyHookLib.cpp
│ │ ├── KeyHookLib.def
│ │ ├── KeyHookLib.h
│ │ └── Release
│ │ ├── 09KeyHookLib.dll
│ │ └── 09KeyHookLib.lib
│ ├── 10ClientDemo
│ │ ├── 10ClientDemo.dsp
│ │ ├── 10ClientDemo.dsw
│ │ ├── ClientDemo.cpp
│ │ └── Release
│ │ └── 10ClientDemo.exe
│ ├── 10IPPack
│ │ ├── 10IPPack.dsp
│ │ ├── 10IPPack.dsw
│ │ ├── 10IPPackLib.dll
│ │ ├── 10IPPack.ncb
│ │ ├── 10IPPack.opt
│ │ ├── 10IPPack.plg
│ │ ├── Debug
│ │ │ ├── 10IPPack.bsc
│ │ │ ├── 10IPPack.exe
│ │ │ ├── 10IPPack.ilk
│ │ │ ├── 10IPPack.pch
│ │ │ ├── 10IPPack.pdb
│ │ │ ├── EnumProcessDlg.obj
│ │ │ ├── EnumProcessDlg.sbr
│ │ │ ├── IPPack.obj
│ │ │ ├── IPPack.res
│ │ │ ├── IPPack.sbr
│ │ │ ├── vc60.idb
│ │ │ └── vc60.pdb
│ │ ├── EnumProcessDlg.cpp
│ │ ├── EnumProcessDlg.h
│ │ ├── IPPack.cpp
│ │ ├── IPPack.cpp.bak
│ │ ├── IPPack.h
│ │ ├── IPPack.ico
│ │ ├── IPPackLib.h
│ │ ├── IPPack.rc
│ │ ├── Release
│ │ │ ├── 10IPPack.exe
│ │ │ └── 10IPPackLib.dll
│ │ ├── resource.h
│ │ └── ShareMemory.h
│ ├── 10IPPackLib
│ │ ├── 10IPPackLib.dsp
│ │ ├── 10IPPackLib.dsw
│ │ ├── IPPackLib.cpp
│ │ ├── IPPackLib.cpp.bak
│ │ ├── IPPackLib.def
│ │ ├── IPPackLib.h
│ │ ├── Release
│ │ │ ├── 10IPPackLib.dll
│ │ │ └── 10IPPackLib.lib
│ │ ├── ShareMemory.h
│ │ ├── ULHook.cpp
│ │ └── ULHook.h
│ ├── 10ServerDemo
│ │ ├── 10ServerDemo.dsp
│ │ ├── 10ServerDemo.dsw
│ │ ├── Release
│ │ │ └── 10ServerDemo.exe
│ │ └── ServerDemo.cpp
│ ├── 10TCPClient
│ │ ├── 10TCPClient.dsp
│ │ ├── 10TCPClient.dsw
│ │ ├── Release
│ │ │ └── 10TCPClient.exe
│ │ ├── resource.h
│ │ ├── resource.rc
│ │ ├── TCPClient.cpp
│ │ ├── TCPClient.h
│ │ └── TCPClient.ICO
│ ├── 10TCPServer
│ │ ├── 10TCPServer.dsp
│ │ ├── 10TCPServer.dsw
│ │ ├── ACER.ICO
│ │ ├── network computer.ico
│ │ ├── Release
│ │ │ └── 10TCPServer.exe
│ │ ├── resource.h
│ │ ├── resource.rc
│ │ ├── TCPClient.cpp
│ │ └── TCPClient.h
│ ├── 11CharConvert
│ │ ├── CharConvert
│ │ │ ├── CharConvert.cpp
│ │ │ ├── CharConvert.dsp
│ │ │ ├── CharConvert.dsw
│ │ │ ├── CharConvert.h
│ │ │ └── Release
│ │ │ └── CharConvert.sys
│ │ └── SCPDemo
│ │ ├── CharConvert.h
│ │ ├── CharConvert.SYS
│ │ ├── Driver.h
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ ├── CharConvert.sys
│ │ │ └── SCPDemo.exe
│ │ ├── SCPDemo.cpp
│ │ ├── SCPDemo.dsp
│ │ ├── SCPDemo.dsw
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── 11DriverDemo
│ │ ├── 11DriverDemo.cpp
│ │ ├── 11DriverDemo.dsp
│ │ ├── 11DriverDemo.dsw
│ │ └── Release
│ │ └── 11DriverDemo.sys
│ ├── 11Firewall
│ │ ├── DrvFltIp
│ │ │ ├── DrvFltIp.cpp
│ │ │ ├── DrvFltIp.dsp
│ │ │ ├── DrvFltIp.dsw
│ │ │ ├── DrvFltIp.h
│ │ │ ├── internal.h
│ │ │ └── Release
│ │ │ └── DrvFltIp.sys
│ │ └── Firewall
│ │ ├── Driver.h
│ │ ├── DrvFltIp.h
│ │ ├── DrvFltIp.sys
│ │ ├── Firewall.cpp
│ │ ├── FirewallDoc.cpp
│ │ ├── FirewallDoc.h
│ │ ├── Firewall.dsp
│ │ ├── Firewall.dsw
│ │ ├── Firewall.h
│ │ ├── Firewall.rc
│ │ ├── FirewallView.cpp
│ │ ├── FirewallView.h
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ ├── DrvFltIp.sys
│ │ │ └── Firewall.exe
│ │ ├── res
│ │ │ ├── FirewallDoc.ico
│ │ │ ├── Firewall.ico
│ │ │ ├── Firewall.rc2
│ │ │ └── Toolbar.bmp
│ │ ├── Resource.h
│ │ ├── RuleDlg.cpp
│ │ ├── RuleDlg.h
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── AppMonitor
│ │ ├── AppMonitor.aps
│ │ ├── AppMonitor.clw
│ │ ├── AppMonitor.cpp
│ │ ├── AppMonitorDlg.cpp
│ │ ├── AppMonitorDlg.h
│ │ ├── AppMonitor.dsp
│ │ ├── AppMonitor.dsw
│ │ ├── AppMonitor.h
│ │ ├── AppMonitor.ncb
│ │ ├── AppMonitor.opt
│ │ ├── AppMonitor.plg
│ │ ├── AppMonitor.rc
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── AppMonitor.exe
│ │ ├── res
│ │ │ ├── AppMonitor.ico
│ │ │ └── AppMonitor.rc2
│ │ ├── Resource.h
│ │ ├── StdAfx.cpp
│ │ └── StdAfx.h
│ ├── COMMON
│ │ ├── _AFXCOLL.H
│ │ ├── _AFX.H
│ │ ├── _AFXIMPL.H
│ │ ├── _AFXMSG_.H
│ │ ├── _AFXPLEX_.H
│ │ ├── AFXSTATE.CPP
│ │ ├── _AFXSTAT_.H
│ │ ├── AFXTLS.CPP
│ │ ├── _AFXTLS_.H
│ │ ├── _AFXWIN.H
│ │ ├── APPCORE.CPP
│ │ ├── APPINIT.CPP
│ │ ├── CMDTARG.CPP
│ │ ├── DUMPOUT.CPP
│ │ ├── MAP_PP.CPP
│ │ ├── OBJCORE.CPP
│ │ ├── PLEX.CPP
│ │ ├── THRDCORE.CPP
│ │ ├── WINCORE.CPP
│ │ ├── WINHAND_.H
│ │ └── WINMAIN.CPP
│ ├── DriverWizard
│ │ ├── Debug.cpp
│ │ ├── Debug.h
│ │ ├── DriverWizardAw.cpp
│ │ ├── DriverWizardAw.h
│ │ ├── DriverWizard.cpp
│ │ ├── DriverWizard.dsp
│ │ ├── DriverWizard.dsw
│ │ ├── DriverWizard.h
│ │ ├── DriverWizard.rc
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ ├── Debug.obj
│ │ │ ├── DriverWizardAw.obj
│ │ │ ├── DriverWizard.awx
│ │ │ ├── DriverWizard.obj
│ │ │ ├── DriverWizard.pch
│ │ │ ├── DriverWizard.res
│ │ │ ├── StdAfx.obj
│ │ │ └── vc60.idb
│ │ ├── res
│ │ │ └── DriverWizard.ico
│ │ ├── Resource.h
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ └── Template
│ │ ├── confirm.inf
│ │ ├── newproj.inf
│ │ └── root.cpp
│ ├── ImageProcess
│ │ ├── _desktop.ini
│ │ ├── Gray.cpp
│ │ ├── Gray.h
│ │ ├── ImageProcess.aps
│ │ ├── ImageProcess.clw
│ │ ├── ImageProcess.cpp
│ │ ├── ImageProcessDoc.cpp
│ │ ├── ImageProcessDoc.h
│ │ ├── ImageProcess.dsp
│ │ ├── ImageProcess.dsw
│ │ ├── ImageProcess.h
│ │ ├── ImageProcess.ncb
│ │ ├── ImageProcess.opt
│ │ ├── ImageProcess.plg
│ │ ├── ImageProcess.rc
│ │ ├── ImageProcessView.cpp
│ │ ├── ImageProcessView.h
│ │ ├── IntensityDlg.cpp
│ │ ├── IntensityDlg.h
│ │ ├── MainFrm.cpp
│ │ ├── MainFrm.h
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ └── ImageProcess.exe
│ │ ├── res
│ │ │ ├── _desktop.ini
│ │ │ ├── ImageProcessDoc.ico
│ │ │ ├── ImageProcess.ico
│ │ │ ├── ImageProcess.rc2
│ │ │ └── Toolbar.bmp
│ │ ├── resource.h
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── Vector2D.cpp
│ │ └── Vector2D.h
│ └── MemRepair
│ ├── MemFinder.h
│ ├── MemRepair.cpp
│ ├── MemRepair.dsp
│ ├── MemRepair.dsw
│ ├── MemRepair.h
│ ├── MemRepair.ICO
│ ├── MemRepair.rc
│ ├── Release
│ │ └── MemRepair.exe
│ └── resource.h
└── 驱动程序向导
├── DriverWizard
│ ├── Debug.cpp
│ ├── Debug.h
│ ├── DriverWizardAw.cpp
│ ├── DriverWizardAw.h
│ ├── DriverWizard.cpp
│ ├── DriverWizard.dsp
│ ├── DriverWizard.dsw
│ ├── DriverWizard.h
│ ├── DriverWizard.ncb
│ ├── DriverWizard.opt
│ ├── DriverWizard.rc
│ ├── ReadMe.txt
│ ├── res
│ │ └── DriverWizard.ico
│ ├── Resource.h
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ └── Template
│ ├── confirm.inf
│ ├── newproj.inf
│ └── root.cpp
└── DriverWizard.awx
181 directories, 680 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论