@rtype: int or None @return: Entry point of the module. Returns C{None} if unknown.
(self)
| 267 | return self.SizeOfImage |
| 268 | |
| 269 | def get_entry_point(self): |
| 270 | """ |
| 271 | @rtype: int or None |
| 272 | @return: Entry point of the module. |
| 273 | Returns C{None} if unknown. |
| 274 | """ |
| 275 | if not self.EntryPoint: |
| 276 | self.__get_size_and_entry_point() |
| 277 | return self.EntryPoint |
| 278 | |
| 279 | def __get_size_and_entry_point(self): |
| 280 | "Get the size and entry point of the module using the Win32 API." |
no test coverage detected