cheney 0 Posted July 26, 2010 Hi: how can I get the pointer of offset? local $Buffer = DllStructCreate("byte[" & 0x10*512 & "]") local $ptr = DllStructGetPtr($Buffer) How can I get the pointer of byte[512]? Use DllStructGetPtr ?? Thanks for your help !! Share this post Link to post Share on other sites
evilertoaster 3 Posted July 26, 2010 Assuming it's a byte array you should be able to do: local $Buffer = DllStructCreate("byte[" & 0x10*512 & "]") local $ptr = DllStructGetPtr($Buffer)+512 Share this post Link to post Share on other sites
cheney 0 Posted July 27, 2010 Thank you for your help !! Share this post Link to post Share on other sites