example of forwarded exports in PE

git-svn-id: svn://kolibrios.org@6768 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
CleverMouse
2016-11-29 17:54:32 +00:00
parent a5d8ff9f45
commit 3d2f646747
4 changed files with 59 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
format PE console 0.8
include '../../../proc32.inc'
include '../../../import.inc'
invoke func1
invoke func2
invoke con_exit, 0
xor eax, eax
ret
align 4
data import
library forwarder, 'forwarder.dll', console, 'console.dll'
import forwarder, func1, 'func1', func2, 'func2'
import console, con_exit, 'con_exit'
end data