forked from KolibriOS/kolibrios
90cf9246ac
console.obj http.ibj InputBox.obj Add header files for apps what dynamically link these libraries. git-svn-id: svn://kolibrios.org@7925 a494cfbc-eb01-0410-851d-a64ba20cac60
19 lines
227 B
NASM
19 lines
227 B
NASM
format ELF
|
|
|
|
include "__lib__.inc"
|
|
|
|
fun equ con_get_flags
|
|
fun_str equ 'con_get_flags'
|
|
|
|
section '.text'
|
|
|
|
fun_name db fun_str, 0
|
|
|
|
section '.data'
|
|
|
|
extrn lib_name
|
|
public fun
|
|
|
|
fun dd fun_name
|
|
lib dd lib_name
|