Inheritance diagram for SourceMod::IMemoryUtils:
Public Member Functions | |
| const char * | GetInterfaceName () |
| Must return a string defining the interface's unique name. | |
| unsigned int | GetInterfaceVersion () |
| Must return an integer defining the interface's version. | |
| virtual void * | FindPattern (const void *libPtr, const char *pattern, size_t len)=0 |
| Searches for a pattern of bytes within the memory of a dynamic library. | |
Definition at line 47 of file IMemoryUtils.h.
| virtual void* SourceMod::IMemoryUtils::FindPattern | ( | const void * | libPtr, | |
| const char * | pattern, | |||
| size_t | len | |||
| ) | [pure virtual] |
Searches for a pattern of bytes within the memory of a dynamic library.
| libPtr | Pointer to any chunk of memory that resides in the dynamic library. | |
| pattern | Pattern of bytes to search for. 0x2A can be used as a wildcard. | |
| len | Size of the pattern in bytes. |
1.5.1