Jump to content

Recommended Posts

Posted

hi,

I am using the following code:

include <constants.au3>

#Include <Misc.au3>

$string = InputBox('example string to send','please insert string')

Local $tempstruct = DllStructCreate('char[' & StringLen($string) + 1 & ']')

DllStructSetData($tempstruct,1,$string)

Local $MsgStruct = DllStructCreate("int;int")

DllStructSetData($MsgStruct,1,DllStructGetPtr($tempstruct))

DllStructSetData($MsgStruct,2,StringLen($string)+ 1)

$n = _sendmessage(WinGetHandle("magicHwnd"),$WM_COPYDATA,0,DllStructGetPtr($MsgStruct))

is there a way to upload the structure to start from a certain address in the momory?

Posted

You are going to get a stack error no matter how you try that. You can't allocate random-size structures and try to send them to programs. Structures are exactly that, structured. They have exact sizes for each field and that cannot be changed. If you have info on the program you are trying to send to, that will help greatly.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...