def strongReferencesFromHeader(h):
        # List of LC_LOAD_DYLIB commands
        list = filter(lambda (lc,cmd,data): lc.cmd == LC_LOAD_DYLIB, h.commands)
        # Their contents (aka data) as a file path
        return map(lambda (lc,cmd,data): decodeLoadCommandData(data), list)