kolibrios/programs/media/animage/trunk/load_dlls.inc
heavyiron af99f0b88d new version of animage from andrew_programmer
git-svn-id: svn://kolibrios.org@255 a494cfbc-eb01-0410-851d-a64ba20cac60
2006-12-29 14:50:24 +00:00

16 lines
237 B
PHP

; load dll from file to memory
; IN
; eax - pointer to full dll path(path to dll +name_of_dll)
; OUT
; eax- handle to table of export of dll
load_dll:
mov ecx,eax
mov eax,68
mov ebx,19
int 0x40
ret