forked from KolibriOS/kolibrios
4daae89053
updated sysfunc.txt *programs new icons and logo for CPUID and ICON added new version of @ICON and ICONMNGR fixes in iconedit and calendar from DedOK new algoritm of fill background in pic4 all apps (fasm-writen only) rewriten to use common macros.inc for easy recompile in fastcall mode (there is a bug in https; run need rewrite to use common macros.inc) small fixes in build_all.bat script git-svn-id: svn://kolibrios.org@485 a494cfbc-eb01-0410-851d-a64ba20cac60
16 lines
234 B
PHP
16 lines
234 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
|
|
mcall
|
|
|
|
ret
|
|
|