Fix C to ASM http lib bridge

git-svn-id: svn://kolibrios.org@6898 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
ashmew2 2017-05-15 20:43:01 +00:00
parent 7efe02d623
commit 712eb4cd4b

View File

@ -16,15 +16,20 @@ virtual at 0
http_msg http_msg http_msg http_msg
end virtual end virtual
public init_network as '_kolibri_http_init' public init_network as '_init_network_asm'
;;; Returns 0 on success. -1 on failure. ;;; Returns 0 on success. -1 on failure.
proc init_network proc init_network
pusha
mcall 68,11
stdcall dll.Load, @IMPORT stdcall dll.Load, @IMPORT
popa test eax, eax
jnz error
mov eax, 0
ret
error:
mov eax, -1
ret ret
endp endp
@ -33,7 +38,7 @@ endp
library lib_http, 'http.obj' library lib_http, 'http.obj'
import lib_http, \ import lib_http, \
HTTP_get , 'get' , \ HTTP_get , 'get' , \
HTTP_head , 'head' , \ HTTP_head , 'head' , \
HTTP_post , 'post' , \ HTTP_post , 'post' , \
HTTP_find_header_field , 'find_header_field' , \ HTTP_find_header_field , 'find_header_field' , \