files
kolibrios/programs/develop/libraries/box_lib/import.inc
IgorA 0fa13bc0d9
All checks were successful
Build system / Check kernel codestyle (pull_request) Successful in 23s
Build system / Build (pull_request) Successful in 4m18s
Info3ds: added resizing of the window with the figure
2025-05-17 21:59:17 +03:00

24 lines
259 B
PHP

align 4
import_box_lib:
macro E_LIB n, lfn
{
if n eq lib_init
dd sz_#n
else if defined sz_#n
n dd sz_#n
end if
}
include 'export.inc'
dd 0,0
macro E_LIB n, lfn
{
if used n
if lfn eq
sz_#n db `n,0
else
sz_#n db `lfn,0
end if
end if
}
include 'export.inc'