Codefuser Posted November 8, 2016 Posted November 8, 2016 (edited) How do I process this type of structure? I have never seen anything like this before Also how do I create a structure like this in AutoIt using DllStructCreate? I need to create one in order to call ReadProcessMemory to copy a remote structure that's like this into my own process. Edited November 10, 2016 by Codefuser
j0kky Posted November 9, 2016 Posted November 9, 2016 (edited) They are two pointers, so you process it with DllStructCreate in this way: DllStructCreate("ptr Flink; ptr Blink") As msdn page says: Quote For more information about how to use LIST_ENTRY structures to implement a doubly linked list, see Singly and Doubly Linked Lists. Edited November 9, 2016 by j0kky Codefuser 1 Spoiler Some UDFs I created: Winsock UDF STUN UDF WinApi_GetAdaptersAddresses _WinApi_GetLogicalProcessorInformation Bitwise with 64 bit integers An useful collection of zipping file UDFs
Codefuser Posted November 10, 2016 Author Posted November 10, 2016 Thanks for your help, I was confused by the self-referencing in the structure
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now