C layer: change init function in wrappers

git-svn-id: svn://kolibrios.org@6495 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
2016-08-21 23:09:23 +00:00
parent 69c1cf47a2
commit 7dc0d7cd36
14 changed files with 47 additions and 187 deletions

View File

@@ -10,23 +10,13 @@ purge section,mov,add,sub
include '../../../programs/dll.inc'
public init_libini as '_init_libini_asm'
public init_libini as '_kolibri_libini_init'
;;; Returns 0 on success. -1 on failure.
proc init_libini
mcall 68,11
stdcall dll.Load, @IMPORT
test eax, eax
jnz error
mov eax, 0
ret
error:
mov eax, -1
ret
endp