Peek and Poke from VB
Allows you to Peek and Poke memory (For those not old enough to remember these commands, read a value from an address in memory and write a value to an address in memory)
AI
AI Summary: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.
Source Code
'\\ API Declarations Private Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (Destination As Long, Source As Long, ByVal Length As Long) Private Declare Sub CopyMemoryByte Lib "kernel32" Alias "RtlMoveMemory" (Destination As Byte, Source As Long, ByVal Length As Long) Private Declare Sub CopyMemoryFromByte Lib "kernel32" Alias "RtlMoveMemory" (Destination As Long, Source As Byte, ByVal Length As Long) '\\ Utility functions Public Function Peek(Address As Long) As Long Call CopyMemory(Peek, ByVal Address, Len(Address)) End Function Public Function PeekByte(Address As Long) As Byte Call CopyMemoryByte(PeekByte, ByVal Address, Len(PeekByte)) End Function Public Function Poke(Address As Long, Value As Long) CopyMemory ByVal Address, Value, LenB(Value) End Function Public Function PokeByte(Address As Long, Value As Byte) CopyMemoryFromByte ByVal Address, Value, LenB(Value) End Function
Original Comments (3)
Recovered from Wayback Machine