Subversion Repositories Kolibri OS

Rev

Rev 255 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
255 heavyiron 1
; load dll from file to memory
2
; IN
3
; eax - pointer to full dll path(path to dll +name_of_dll)
4
; OUT
5
; eax- handle to table of export of dll
6
 
7
load_dll:
8
 
9
    mov ecx,eax
10
    mov eax,68
11
    mov ebx,19
485 heavyiron 12
    mcall
255 heavyiron 13
 
14
    ret
15