Code:
LOCAL dwOffset AS DWORD LOCAL pData As BYTE PTR dwOffset = &H654321 @pData = CBYT PTR(dwOffset)
Thanks.
LOCAL dwOffset AS DWORD LOCAL pData As BYTE PTR dwOffset = &H654321 @pData = CBYT PTR(dwOffset)
LOCAL data as BYTE LOCAL pData AS BYTE PTR pData = (ADDRESS of the base of whatever dwOffset is from) + dwoffset data = @pData
#COMPILE EXE #DIM ALL FUNCTION PBMAIN () AS LONG LOCAL dwOffset AS DWORD LOCAL pData AS BYTE PTR LOCAL myData AS STRING dwOffset = &H654321 myData = REPEAT$(1400000, CHR$(3,123,33,51,66,211,92,244)) 'any data string pData = STRPTR(myData) + dwOffset ? MKBYT$(@pData) 'this shows you the byte at offset &H654321 ? STR$(@pData) 'this shows you the value of the byte at offset &H654321 END FUNCTION
We process personal data about users of our site, through the use of cookies and other technologies, to deliver our services, and to analyze site activity. For additional details, refer to our Privacy Policy.
By clicking "I AGREE" below, you agree to our Privacy Policy and our personal data processing and cookie practices as described therein. You also acknowledge that this forum may be hosted outside your country and you consent to the collection, storage, and processing of your data in the country where this forum is hosted.
Comment