(dll)
| 218 | raise ValueError("%s not found in %s" % (dllname, lib_dirs)) |
| 219 | |
| 220 | def dump_table(dll): |
| 221 | st = subprocess.check_output(["objdump.exe", "-p", dll]) |
| 222 | return st.split(b'\n') |
| 223 | |
| 224 | def generate_def(dll, dfile): |
| 225 | """Given a dll file location, get all its exported symbols and dump them |
no test coverage detected