Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6589 siemargl 1
 
2
use32                                   ; Tell compiler to use 32 bit instructions
3
4
 
5
6
 
7
include '../../../programs/macros.inc'
8
purge section,mov,add,sub
9
10
 
11
12
 
13
;;; Returns 0 on success. -1 on failure.
14
15
 
16
	pusha
17
	mcall 68,11
18
	stdcall dll.Load, @IMPORT
19
	popa
20
	ret
21
endp
22
23
 
24
library lib_boxlib, 	'msgbox.obj'
25
26
 
27
	mb_create, 'mb_create' , \
28
	mb_reinit, 'mb_reinit' , \
29
	mb_setfunctions, 'mb_setfunctions'
30
31
 
32
public mb_reinit as '_msgbox_reinit'
33
public mb_setfunctions as '_msgbox_setfunctions'
34