Question:
Is there a way to list symbols from library (*.dlb) file?
Answer:
Yes, You can use elfdump (ELF Dumper) utility to list out symbols from the library.
The executable and linking format (ELF) file dumper (elfdump)utility extracts data from ELF-format executable (.dxe) and object(.doj) files and yields text showing the ELF file's contents.
Ex:elfdump.exe -arsym <library_name_here>
Here -arsym switch will prints the library symbol table.