PeekB, PeekI, PeekL – Read a byte, integer or long from memory

PeekB, PeekI, PeekL – Read a byte, integer or long from memory

Private Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (dest As _    Any, source As Any, ByVal bytes As Long)' read a byte from memoryFunction PeekB(ByVal address As Long) As Byte    CopyMemory PeekB, ByVal address, 1End Function' read an integer from memoryFunction PeekI(ByVal address As Long) As Integer    CopyMemory PeekI, ByVal address, 2End Function' read a Long value from memoryFunction PeekL(ByVal address As Long) As Long    CopyMemory PeekL, ByVal address, 4End Function

Share the Post:
data observability

Data Observability Explained

Data is the lifeblood of any successful business, as it is the driving force behind critical decision-making, insight generation, and strategic development. However, due to its intricate nature, ensuring the

Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular