接下来我们做一个稍微复杂一些的实验,实验需要四个程序:
HelloWorld.exe:弹出MessageBox窗口(实验1已实现)。
Regedit.exe:添加注册表启动项。
LockTray.exe:锁定任务栏窗口。
UnLockTray.exe:解锁任务栏窗口。
【注】为了减少不必要的麻烦,上述四个程序都使用32位汇编代码实现。
实验二十八:手工重构导入表
■实验要求
●分别编译实现上述四个实验程序。
●Regedit.exe程序的功能是将LockTray.exe添加到注册表启动项中。
●手工实现,将Regedit.exe程序的代码、数据、IAT表和导入表添加到HelloWorld.exe程序中,并可以正确运行。
●HelloWorld.exe源码:(略)
●LockTray.exe源码:
;------------------------
;Filename:LockTray.asm
;实验28:锁定任务栏
;by:bcdaren
;编写日期:2021.04.26
;========================================================
.386
.model flat,stdcall
option casemap:none
include windows.inc
include user32.inc
includelib user32.lib
include kernel32.inc
includelib kernel32.lib
;数据段
.data
szClassName db 'Shell_TrayWnd',0
hTray dd ?