Subversion Repositories Kolibri OS

Rev

Rev 255 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

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