(self, name, access, obj_flags)
| 523 | return status, handle |
| 524 | |
| 525 | def open_section(self, name, access, obj_flags): |
| 526 | handle = c_uint64() |
| 527 | status = self.__kb.KbOpenSection(byref(handle), c_wchar_p(name), c_uint(access), c_uint(obj_flags)) |
| 528 | return status, handle |
| 529 | |
| 530 | def map_view_of_section( |
| 531 | self, |
nothing calls this directly
no outgoing calls
no test coverage detected