initial commit: a mess of assembly code
[fmap.git] / x86_64_sse2_x87 / inflate / zlib / data.s
blobb20ab35a9659eeb41377cd998c9ad52c287c9b29
1 ; vim: set filetype=fasm foldmethod=marker commentstring=;%s colorcolumn=101 :
2 namespace inflate
3 module.name db 'libz.so.1',0
4 inflateInit.sym db 'inflateInit_',0 ; inflateInit is only a macro
5 inflateEnd.sym db 'inflateEnd',0
6 inflate.sym db 'inflate',0
7 zlib_version db '1.2.11',0 ; needed for the real inflateInit_
8 msg: namespace msg
9 module_open_failed db 'unable to dlopen "%s" module',10,0
10 sym_resolution_failed db 'unable to dlsym "%s" symbol',10,0
11 end namespace ; msg
12 end namespace