Update: I believe I'm having an issue with the Struct I'm passing to TA_Activate. Maybe if I post my Struct code (DllStructs are special C/C++ style constructs in AutoIt specifically for passing to DllCall) it'll help weed out where the issue is...
Local $sExtraData = "testExtraData"Local $gsActOpts = "uint nLength;wchar sExtraData[" & StringLen($sExtraData) & "]"Local $gActOpts = DllStructCreate($gsActOpts)DllStructSetData($gActOpts, "sExtraData", $sExtraData)DllStructSetData($gActOpts, "nLength", _UINT(DllStructGetSize($gActOpts)))_WinAPI_DisplayStruct($gActOpts)
The _WinAPI_DisplayStruct shows me this: https://drive.google.com/open?id=1I6kYKfmhJAwB2TBXt_5PFomXnq8njkFe
Does that look like it's the correct format for what TA_Activate is expecting? If not, could you tell me what's wrong with the structure so I can fix it?
Thank you in advance to anyone who can assist and help me straighten out the variable issue!
Side note: I'm unable to edit my first post because I wasn't logged in when I created it. I created this one the same way to avoid confusion in who posted the follow-up. If I DM a mod can they help me change my account username and then put these posts under my account? 😳