http://qs321.pair.com?node_id=1168745


in reply to Re^4: How to pass a pointer to an array of 'unsigned char' C data type with Win32::API (error)
in thread How to pass a pointer to an array of 'unsigned char' C data type with Win32::API

For the audience's information, Google found ftp://kopfweb.de/ko/kopfweb.de/AutomotiveInterface/AID/V3.05/AID.h which lead to ftp://kopfweb.de/ko/kopfweb.de/AutomotiveInterface/Documentation/AI%20USB%20Communication.pdf.

Perhaps you aren't calling KSENT_TXInit() properly?

The documentation says that the second argument should be a pointer to a 12-bit value stored in 2 bytes, yet you are setting 4 bytes. So, perhaps you are encoding those bits incorrectly?

Searching for your error message (in German) on the internet only found one other node on this web site. But that thread contains examples of dumping lots of "what was going on" details for such a failure. Doing such for your case might provide more clues. See Strawberry Perl 64bit on Win7 crashes on DBI-function.

- tye        

Replies are listed 'Best First'.
Re^6: How to pass a pointer to an array of 'unsigned char' C data type with Win32::API (debug)
by apeks_okad (Novice) on Jul 28, 2016 at 22:54 UTC

    Wow..! That's quite a bit of research :). Those are exactly my reference documents.

    Yes, I am setting the value of the KSENT_TXInit as per the document (and getting an "all OK" return from the call) before calling the KSENT_TX function

    I wasn't so sure of the description in the document regarding the length of the information to be sent and hence contacted the developer of the DLL who replied saying that "the *data is a pointer to an array of unsigned chars were each char is a SENT nibble"

    So i tried quite a few possibilities in addition to the one mentioned in the original query

    passing only the 3 nibbles as 3 unsigned chars  my $data_ref = pack ('U0C*', 0x01,0x05,0x05);

    and passing the 3 nibbles in 2 octets

     my $data_ref = pack ('U0C*', 0x01,0x55);

    and passing all the 8 nibbles as 8 unsigned chars

    my $data_ref = pack ('U0C*', 0x08,0x01,0x05,0x05,0x00,0x00,0x0E,0x00);

    All of it still crashes with the same error. On hindsight, I think the correct windows error would be "Perl interpreter encountered an issue". I will try dumping the details of the failure if it helps further.

      So I got around to dumping the data using dependency walker (depends.exe /c /f:1 /pb /ot:temp.txt ... ...\perl.exe ...\foo.pl ...) and it looks like this

      Started "PERL.EXE" (process 0x2028) at address 0x00400000. Successful +ly hooked module. Loaded "NTDLL.DLL" at address 0x77420000. Successfully hooked module. Loaded "KERNEL32.DLL" at address 0x75180000. Successfully hooked modu +le. Loaded "KERNELBASE.DLL" at address 0x75AA0000. Successfully hooked mo +dule. DllMain(0x75AA0000, DLL_PROCESS_ATTACH, 0x00000000) in "KERNELBASE.DLL +" called. DllMain(0x75AA0000, DLL_PROCESS_ATTACH, 0x00000000) in "KERNELBASE.DLL +" returned 1 (0x1). DllMain(0x75180000, DLL_PROCESS_ATTACH, 0x00000000) in "KERNEL32.DLL" +called. DllMain(0x75180000, DLL_PROCESS_ATTACH, 0x00000000) in "KERNEL32.DLL" +returned 1 (0x1). Injected "DEPENDS.DLL" at address 0x08370000. DllMain(0x08370000, DLL_PROCESS_ATTACH, 0x00000000) in "DEPENDS.DLL" c +alled. DllMain(0x08370000, DLL_PROCESS_ATTACH, 0x00000000) in "DEPENDS.DLL" r +eturned 1 (0x1). Loaded "PERL524.DLL" at address 0x6DCC0000. Successfully hooked modul +e. Loaded "ADVAPI32.DLL" at address 0x753B0000. Successfully hooked modu +le. Loaded "MSVCRT.DLL" at address 0x76940000. Successfully hooked module +. Loaded "SECHOST.DLL" at address 0x74E60000. Successfully hooked modul +e. Loaded "RPCRT4.DLL" at address 0x75950000. Successfully hooked module +. Loaded "SSPICLI.DLL" at address 0x74D30000. Successfully hooked modul +e. Loaded "CRYPTBASE.DLL" at address 0x74D20000. Successfully hooked mod +ule. Loaded "COMCTL32.DLL" at address 0x735B0000. Successfully hooked modu +le. Loaded "GDI32.DLL" at address 0x75580000. Successfully hooked module. Loaded "USER32.DLL" at address 0x76A60000. Successfully hooked module +. Loaded "LPK.DLL" at address 0x75A50000. Successfully hooked module. Loaded "USP10.DLL" at address 0x75AF0000. Successfully hooked module. Loaded "SHLWAPI.DLL" at address 0x76A00000. Successfully hooked modul +e. Loaded "LIBGCC_S_SJLJ-1.DLL" at address 0x6D0C0000. Successfully hook +ed module. Loaded "LIBWINPTHREAD-1.DLL" at address 0x64940000. Successfully hook +ed module. Loaded "WS2_32.DLL" at address 0x75140000. Successfully hooked module +. Loaded "NSI.DLL" at address 0x756D0000. Successfully hooked module. Loaded "LIBSTDC++-6.DLL" at address 0x6FE40000. Successfully hooked m +odule. Entrypoint reached. All implicit modules have been loaded. DllMain(0x76940000, DLL_PROCESS_ATTACH, 0x0028FD24) in "MSVCRT.DLL" ca +lled. DllMain(0x76940000, DLL_PROCESS_ATTACH, 0x0028FD24) in "MSVCRT.DLL" re +turned 1 (0x1). DllMain(0x74D20000, DLL_PROCESS_ATTACH, 0x0028FD24) in "CRYPTBASE.DLL" + called. DllMain(0x74D20000, DLL_PROCESS_ATTACH, 0x0028FD24) in "CRYPTBASE.DLL" + returned 1 (0x1). DllMain(0x74D30000, DLL_PROCESS_ATTACH, 0x0028FD24) in "SSPICLI.DLL" c +alled. DllMain(0x74D30000, DLL_PROCESS_ATTACH, 0x0028FD24) in "SSPICLI.DLL" r +eturned 1 (0x1). DllMain(0x75950000, DLL_PROCESS_ATTACH, 0x0028FD24) in "RPCRT4.DLL" ca +lled. DllMain(0x75950000, DLL_PROCESS_ATTACH, 0x0028FD24) in "RPCRT4.DLL" re +turned 1972807681 (0x7596A801). DllMain(0x74E60000, DLL_PROCESS_ATTACH, 0x0028FD24) in "SECHOST.DLL" c +alled. DllMain(0x74E60000, DLL_PROCESS_ATTACH, 0x0028FD24) in "SECHOST.DLL" r +eturned 1 (0x1). DllMain(0x753B0000, DLL_PROCESS_ATTACH, 0x0028FD24) in "ADVAPI32.DLL" +called. DllMain(0x753B0000, DLL_PROCESS_ATTACH, 0x0028FD24) in "ADVAPI32.DLL" +returned 1 (0x1). DllMain(0x76A60000, DLL_PROCESS_ATTACH, 0x0028FD24) in "USER32.DLL" ca +lled. LoadLibraryW("C:\Windows\system32\IMM32.DLL") called from "USER32.DLL" + at address 0x76A7CF1E. Loaded "IMM32.DLL" at address 0x75290000. Successfully hooked module. Loaded "MSCTF.DLL" at address 0x74D90000. Successfully hooked module. DllMain(0x74D90000, DLL_PROCESS_ATTACH, 0x00000000) in "MSCTF.DLL" cal +led. DllMain(0x74D90000, DLL_PROCESS_ATTACH, 0x00000000) in "MSCTF.DLL" ret +urned 1 (0x1). DllMain(0x75290000, DLL_PROCESS_ATTACH, 0x00000000) in "IMM32.DLL" cal +led. GetProcAddress(0x75290000 [IMM32.DLL], "ImmWINNLSEnableIME") called fr +om "USER32.DLL" at address 0x76A7C322 and returned 0x752AF637. GetProcAddress(0x75290000 [IMM32.DLL], "ImmWINNLSGetEnableStatus") cal +led from "USER32.DLL" at address 0x76A7C337 and returned 0x752AF65E. GetProcAddress(0x75290000 [IMM32.DLL], "ImmSendIMEMessageExW") called +from "USER32.DLL" at address 0x76A7C34C and returned 0x752AF8EC. GetProcAddress(0x75290000 [IMM32.DLL], "ImmSendIMEMessageExA") called +from "USER32.DLL" at address 0x76A7C361 and returned 0x752AF907. GetProcAddress(0x75290000 [IMM32.DLL], "ImmIMPGetIMEW") called from "U +SER32.DLL" at address 0x76A7C376 and returned 0x752AFB65. GetProcAddress(0x75290000 [IMM32.DLL], "ImmIMPGetIMEA") called from "U +SER32.DLL" at address 0x76A7C38B and returned 0x752AFB99. GetProcAddress(0x75290000 [IMM32.DLL], "ImmIMPQueryIMEW") called from +"USER32.DLL" at address 0x76A7C3A0 and returned 0x752AF9CA. GetProcAddress(0x75290000 [IMM32.DLL], "ImmIMPQueryIMEA") called from +"USER32.DLL" at address 0x76A7C3B5 and returned 0x752AFAD6. GetProcAddress(0x75290000 [IMM32.DLL], "ImmIMPSetIMEW") called from "U +SER32.DLL" at address 0x76A7C3CA and returned 0x752AF746. GetProcAddress(0x75290000 [IMM32.DLL], "ImmIMPSetIMEA") called from "U +SER32.DLL" at address 0x76A7C3DF and returned 0x752AF86E. GetProcAddress(0x75290000 [IMM32.DLL], "ImmAssociateContext") called f +rom "USER32.DLL" at address 0x76A7C3F4 and returned 0x752A3540. GetProcAddress(0x75290000 [IMM32.DLL], "ImmEscapeA") called from "USER +32.DLL" at address 0x76A7C409 and returned 0x752A9327. GetProcAddress(0x75290000 [IMM32.DLL], "ImmEscapeW") called from "USER +32.DLL" at address 0x76A7C41E and returned 0x752A95A9. GetProcAddress(0x75290000 [IMM32.DLL], "ImmGetCompositionStringA") cal +led from "USER32.DLL" at address 0x76A7C433 and returned 0x752A7A37. GetProcAddress(0x75290000 [IMM32.DLL], "ImmGetCompositionStringW") cal +led from "USER32.DLL" at address 0x76A7C448 and returned 0x752A420C. GetProcAddress(0x75290000 [IMM32.DLL], "ImmGetCompositionWindow") call +ed from "USER32.DLL" at address 0x76A7C45D and returned 0x752A2E79. GetProcAddress(0x75290000 [IMM32.DLL], "ImmGetContext") called from "U +SER32.DLL" at address 0x76A7C472 and returned 0x752A2084. GetProcAddress(0x75290000 [IMM32.DLL], "ImmGetDefaultIMEWnd") called f +rom "USER32.DLL" at address 0x76A7C487 and returned 0x752A1F9D. GetProcAddress(0x75290000 [IMM32.DLL], "ImmIsIME") called from "USER32 +.DLL" at address 0x76A7C49C and returned 0x752A2FC7. GetProcAddress(0x75290000 [IMM32.DLL], "ImmReleaseContext") called fro +m "USER32.DLL" at address 0x76A7C4B1 and returned 0x752A21A2. GetProcAddress(0x75290000 [IMM32.DLL], "ImmRegisterClient") called fro +m "USER32.DLL" at address 0x76A7C4C6 and returned 0x752A1346. GetProcAddress(0x75290000 [IMM32.DLL], "ImmGetCompositionFontW") calle +d from "USER32.DLL" at address 0x76A7C4DB and returned 0x752A68C8. GetProcAddress(0x75290000 [IMM32.DLL], "ImmGetCompositionFontA") calle +d from "USER32.DLL" at address 0x76A7C4F0 and returned 0x752A682C. GetProcAddress(0x75290000 [IMM32.DLL], "ImmSetCompositionFontW") calle +d from "USER32.DLL" at address 0x76A7C505 and returned 0x752A3938. GetProcAddress(0x75290000 [IMM32.DLL], "ImmSetCompositionFontA") calle +d from "USER32.DLL" at address 0x76A7C51A and returned 0x752A6964. GetProcAddress(0x75290000 [IMM32.DLL], "ImmSetCompositionWindow") call +ed from "USER32.DLL" at address 0x76A7C52F and returned 0x752A38AA. GetProcAddress(0x75290000 [IMM32.DLL], "ImmNotifyIME") called from "US +ER32.DLL" at address 0x76A7C544 and returned 0x752A3C6C. GetProcAddress(0x75290000 [IMM32.DLL], "ImmLockIMC") called from "USER +32.DLL" at address 0x76A7C559 and returned 0x752A1E7D. GetProcAddress(0x75290000 [IMM32.DLL], "ImmUnlockIMC") called from "US +ER32.DLL" at address 0x76A7C56E and returned 0x752A1E95. GetProcAddress(0x75290000 [IMM32.DLL], "ImmLoadIME") called from "USER +32.DLL" at address 0x76A7C583 and returned 0x752A197A. GetProcAddress(0x75290000 [IMM32.DLL], "ImmSetOpenStatus") called from + "USER32.DLL" at address 0x76A7C598 and returned 0x752A3FF3. GetProcAddress(0x75290000 [IMM32.DLL], "ImmFreeLayout") called from "U +SER32.DLL" at address 0x76A7C5AD and returned 0x752A97EF. GetProcAddress(0x75290000 [IMM32.DLL], "ImmActivateLayout") called fro +m "USER32.DLL" at address 0x76A7C5C2 and returned 0x752A8DF5. GetProcAddress(0x75290000 [IMM32.DLL], "ImmGetCandidateWindow") called + from "USER32.DLL" at address 0x76A7C5D7 and returned 0x752A2EBC. GetProcAddress(0x75290000 [IMM32.DLL], "ImmSetCandidateWindow") called + from "USER32.DLL" at address 0x76A7C5EC and returned 0x752A3E02. GetProcAddress(0x75290000 [IMM32.DLL], "ImmConfigureIMEW") called from + "USER32.DLL" at address 0x76A7C601 and returned 0x752A913F. GetProcAddress(0x75290000 [IMM32.DLL], "ImmGetConversionStatus") calle +d from "USER32.DLL" at address 0x76A7C616 and returned 0x752A24E9. GetProcAddress(0x75290000 [IMM32.DLL], "ImmSetConversionStatus") calle +d from "USER32.DLL" at address 0x76A7C62B and returned 0x752A3EE6. GetProcAddress(0x75290000 [IMM32.DLL], "ImmSetStatusWindowPos") called + from "USER32.DLL" at address 0x76A7C640 and returned 0x752A6A7C. GetProcAddress(0x75290000 [IMM32.DLL], "ImmGetImeInfoEx") called from +"USER32.DLL" at address 0x76A7C655 and returned 0x752A14D8. GetProcAddress(0x75290000 [IMM32.DLL], "ImmLockImeDpi") called from "U +SER32.DLL" at address 0x76A7C66A and returned 0x752A2025. GetProcAddress(0x75290000 [IMM32.DLL], "ImmUnlockImeDpi") called from +"USER32.DLL" at address 0x76A7C67F and returned 0x752A1FD8. GetProcAddress(0x75290000 [IMM32.DLL], "ImmGetOpenStatus") called from + "USER32.DLL" at address 0x76A7C694 and returned 0x752A3DCF. GetProcAddress(0x75290000 [IMM32.DLL], "ImmSetActiveContext") called f +rom "USER32.DLL" at address 0x76A7C6A9 and returned 0x752A2246. GetProcAddress(0x75290000 [IMM32.DLL], "ImmTranslateMessage") called f +rom "USER32.DLL" at address 0x76A7C6BE and returned 0x752AF27F. GetProcAddress(0x75290000 [IMM32.DLL], "ImmLoadLayout") called from "U +SER32.DLL" at address 0x76A7C6D3 and returned 0x752A9E79. GetProcAddress(0x75290000 [IMM32.DLL], "ImmProcessKey") called from "U +SER32.DLL" at address 0x76A7C6E8 and returned 0x752A3A3C. GetProcAddress(0x75290000 [IMM32.DLL], "ImmPutImeMenuItemsIntoMappedFi +le") called from "USER32.DLL" at address 0x76A7C6FD and returned 0x75 +2B4E96. GetProcAddress(0x75290000 [IMM32.DLL], "ImmGetProperty") called from " +USER32.DLL" at address 0x76A7C712 and returned 0x752A3BB8. GetProcAddress(0x75290000 [IMM32.DLL], "ImmSetCompositionStringA") cal +led from "USER32.DLL" at address 0x76A7C727 and returned 0x752A83C2. GetProcAddress(0x75290000 [IMM32.DLL], "ImmSetCompositionStringW") cal +led from "USER32.DLL" at address 0x76A7C73C and returned 0x752A83E9. GetProcAddress(0x75290000 [IMM32.DLL], "ImmEnumInputContext") called f +rom "USER32.DLL" at address 0x76A7C751 and returned 0x752A31DD. GetProcAddress(0x75290000 [IMM32.DLL], "ImmSystemHandler") called from + "USER32.DLL" at address 0x76A7C766 and returned 0x752AB1CF. GetProcAddress(0x75290000 [IMM32.DLL], "CtfImmTIMActivate") called fro +m "USER32.DLL" at address 0x76A7C777 and returned 0x752A1888. GetProcAddress(0x75290000 [IMM32.DLL], "CtfImmRestoreToolbarWnd") call +ed from "USER32.DLL" at address 0x76A7C788 and returned 0x752B5114. GetProcAddress(0x75290000 [IMM32.DLL], "CtfImmHideToolbarWnd") called +from "USER32.DLL" at address 0x76A7C799 and returned 0x752B514B. GetProcAddress(0x75290000 [IMM32.DLL], "CtfImmDispatchDefImeMessage") +called from "USER32.DLL" at address 0x76A7C7AA and returned 0x752A163 +C. GetProcAddress(0x75290000 [IMM32.DLL], "CtfImmNotify") called from "US +ER32.DLL" at address 0x76A7C7BB and returned 0x752A15D0. GetProcAddress(0x75290000 [IMM32.DLL], "CtfImmSetDefaultRemoteKeyboard +Layout") called from "USER32.DLL" at address 0x76A7C7CC and returned +0x752B53CC. GetProcAddress(0x75290000 [IMM32.DLL], "CtfImmGetCompatibleKeyboardLay +out") called from "USER32.DLL" at address 0x76A7C7DD and returned 0x7 +52B53DC. DllMain(0x75290000, DLL_PROCESS_ATTACH, 0x00000000) in "IMM32.DLL" ret +urned 1 (0x1). LoadLibraryW("C:\Windows\system32\IMM32.DLL") returned 0x75290000. GetProcAddress(0x75A50000 [LPK.DLL], "LpkTabbedTextOut") called from " +GDI32.DLL" at address 0x75596968 and returned 0x75A548A0. GetProcAddress(0x75A50000 [LPK.DLL], "LpkPSMTextOut") called from "GDI +32.DLL" at address 0x75596973 and returned 0x75A51430. GetProcAddress(0x75A50000 [LPK.DLL], "LpkDrawTextEx") called from "GDI +32.DLL" at address 0x7559697E and returned 0x75A513D0. GetProcAddress(0x75A50000 [LPK.DLL], "LpkEditControl") called from "GD +I32.DLL" at address 0x75596989 and returned 0x75A57000. Loaded "ADIALHK.DLL" at address 0x6D020000. Successfully hooked modul +e. DllMain(0x6D020000, DLL_PROCESS_ATTACH, 0x00000000) in "ADIALHK.DLL" c +alled. GetProcAddress(0x75180000 [KERNEL32.DLL], "FlsAlloc") called from "ADI +ALHK.DLL" at address 0x6D026643 and returned 0x75194EF3. GetProcAddress(0x75180000 [KERNEL32.DLL], "FlsGetValue") called from " +ADIALHK.DLL" at address 0x6D026650 and returned 0x75191252. GetProcAddress(0x75180000 [KERNEL32.DLL], "FlsSetValue") called from " +ADIALHK.DLL" at address 0x6D02665D and returned 0x751941D0. GetProcAddress(0x75180000 [KERNEL32.DLL], "FlsFree") called from "ADIA +LHK.DLL" at address 0x6D02666A and returned 0x7519355F. GetProcAddress(0x75180000 [KERNEL32.DLL], "EncodePointer") called from + "ADIALHK.DLL" at address 0x6D02623E and returned 0x7745B15F. GetProcAddress(0x75180000 [KERNEL32.DLL], "EncodePointer") called from + "ADIALHK.DLL" at address 0x6D02623E and returned 0x7745B15F. GetProcAddress(0x75180000 [KERNEL32.DLL], "EncodePointer") called from + "ADIALHK.DLL" at address 0x6D02623E and returned 0x7745B15F. GetProcAddress(0x75180000 [KERNEL32.DLL], "EncodePointer") called from + "ADIALHK.DLL" at address 0x6D02623E and returned 0x7745B15F. GetProcAddress(0x75180000 [KERNEL32.DLL], "EncodePointer") called from + "ADIALHK.DLL" at address 0x6D02623E and returned 0x7745B15F. GetProcAddress(0x75180000 [KERNEL32.DLL], "EncodePointer") called from + "ADIALHK.DLL" at address 0x6D02623E and returned 0x7745B15F. GetProcAddress(0x75180000 [KERNEL32.DLL], "EncodePointer") called from + "ADIALHK.DLL" at address 0x6D02623E and returned 0x7745B15F. GetProcAddress(0x75180000 [KERNEL32.DLL], "DecodePointer") called from + "ADIALHK.DLL" at address 0x6D0262B5 and returned 0x77459765. GetProcAddress(0x75180000 [KERNEL32.DLL], "InitializeCriticalSectionAn +dSpinCount") called from "ADIALHK.DLL" at address 0x6D02964C and retu +rned 0x751918F2. GetProcAddress(0x75180000 [KERNEL32.DLL], "EncodePointer") called from + "ADIALHK.DLL" at address 0x6D02623E and returned 0x7745B15F. GetProcAddress(0x75180000 [KERNEL32.DLL], "DecodePointer") called from + "ADIALHK.DLL" at address 0x6D0262B5 and returned 0x77459765. GetProcAddress(0x75180000 [KERNEL32.DLL], "DecodePointer") called from + "ADIALHK.DLL" at address 0x6D0262B5 and returned 0x77459765. GetProcAddress(0x75180000 [KERNEL32.DLL], "DecodePointer") called from + "ADIALHK.DLL" at address 0x6D0262B5 and returned 0x77459765. GetProcAddress(0x75180000 [KERNEL32.DLL], "DecodePointer") called from + "ADIALHK.DLL" at address 0x6D0262B5 and returned 0x77459765. GetProcAddress(0x75180000 [KERNEL32.DLL], "DecodePointer") called from + "ADIALHK.DLL" at address 0x6D0262B5 and returned 0x77459765. GetProcAddress(0x75180000 [KERNEL32.DLL], "DecodePointer") called from + "ADIALHK.DLL" at address 0x6D0262B5 and returned 0x77459765. GetProcAddress(0x75180000 [KERNEL32.DLL], "DecodePointer") called from + "ADIALHK.DLL" at address 0x6D0262B5 and returned 0x77459765. GetProcAddress(0x75180000 [KERNEL32.DLL], "DecodePointer") called from + "ADIALHK.DLL" at address 0x6D0262B5 and returned 0x77459765. GetProcAddress(0x75180000 [KERNEL32.DLL], "DecodePointer") called from + "ADIALHK.DLL" at address 0x6D0262B5 and returned 0x77459765. GetProcAddress(0x75180000 [KERNEL32.DLL], "DecodePointer") called from + "ADIALHK.DLL" at address 0x6D0262B5 and returned 0x77459765. GetProcAddress(0x75180000 [KERNEL32.DLL], "DecodePointer") called from + "ADIALHK.DLL" at address 0x6D0262B5 and returned 0x77459765. GetProcAddress(0x75180000 [KERNEL32.DLL], "DecodePointer") called from + "ADIALHK.DLL" at address 0x6D0262B5 and returned 0x77459765. GetProcAddress(0x75180000 [KERNEL32.DLL], "DecodePointer") called from + "ADIALHK.DLL" at address 0x6D0262B5 and returned 0x77459765. GetProcAddress(0x75180000 [KERNEL32.DLL], "DecodePointer") called from + "ADIALHK.DLL" at address 0x6D0262B5 and returned 0x77459765. GetProcAddress(0x75180000 [KERNEL32.DLL], "DecodePointer") called from + "ADIALHK.DLL" at address 0x6D0262B5 and returned 0x77459765. GetProcAddress(0x75180000 [KERNEL32.DLL], "EncodePointer") called from + "ADIALHK.DLL" at address 0x6D026388 and returned 0x7745B15F. GetProcAddress(0x75180000 [KERNEL32.DLL], "DecodePointer") called from + "ADIALHK.DLL" at address 0x6D026398 and returned 0x77459765. DllMain(0x6D020000, DLL_PROCESS_ATTACH, 0x00000000) in "ADIALHK.DLL" r +eturned 1 (0x1). Loaded "KLOEHK.DLL" at address 0x6D590000. Successfully hooked module +. DllMain(0x6D590000, DLL_PROCESS_ATTACH, 0x00000000) in "KLOEHK.DLL" ca +lled. DllMain(0x6D590000, DLL_PROCESS_ATTACH, 0x00000000) in "KLOEHK.DLL" re +turned 1 (0x1). DllMain(0x76A60000, DLL_PROCESS_ATTACH, 0x0028FD24) in "USER32.DLL" re +turned 1 (0x1). DllMain(0x75AF0000, DLL_PROCESS_ATTACH, 0x0028FD24) in "USP10.DLL" cal +led. LoadLibraryA("gdi32.dll") called from "USP10.DLL" at address 0x75B0624 +0. LoadLibraryA("gdi32.dll") returned 0x75580000. GetProcAddress(0x75580000 [GDI32.DLL], "GetCharABCWidthsI") called fro +m "USP10.DLL" at address 0x75B06275 and returned 0x75599E98. DllMain(0x75AF0000, DLL_PROCESS_ATTACH, 0x0028FD24) in "USP10.DLL" ret +urned 1 (0x1). DllMain(0x75A50000, DLL_PROCESS_ATTACH, 0x0028FD24) in "LPK.DLL" calle +d. DllMain(0x75A50000, DLL_PROCESS_ATTACH, 0x0028FD24) in "LPK.DLL" retur +ned 1 (0x1). DllMain(0x75580000, DLL_PROCESS_ATTACH, 0x0028FD24) in "GDI32.DLL" cal +led. DllMain(0x75580000, DLL_PROCESS_ATTACH, 0x0028FD24) in "GDI32.DLL" ret +urned 1 (0x1). DllMain(0x76A00000, DLL_PROCESS_ATTACH, 0x0028FD24) in "SHLWAPI.DLL" c +alled. DllMain(0x76A00000, DLL_PROCESS_ATTACH, 0x0028FD24) in "SHLWAPI.DLL" r +eturned 1 (0x1). DllMain(0x735B0000, DLL_PROCESS_ATTACH, 0x0028FD24) in "COMCTL32.DLL" +called. GetProcAddress(0x75A50000 [LPK.DLL], "LpkEditControl") called from "CO +MCTL32.DLL" at address 0x735DE943 and returned 0x75A57000. DllMain(0x735B0000, DLL_PROCESS_ATTACH, 0x0028FD24) in "COMCTL32.DLL" +returned 1 (0x1). DllMain(0x64940000, DLL_PROCESS_ATTACH, 0x0028FD24) in "LIBWINPTHREAD- +1.DLL" called. DllMain(0x64940000, DLL_PROCESS_ATTACH, 0x0028FD24) in "LIBWINPTHREAD- +1.DLL" returned 1 (0x1). DllMain(0x6D0C0000, DLL_PROCESS_ATTACH, 0x0028FD24) in "LIBGCC_S_SJLJ- +1.DLL" called. DllMain(0x6D0C0000, DLL_PROCESS_ATTACH, 0x0028FD24) in "LIBGCC_S_SJLJ- +1.DLL" returned 1 (0x1). DllMain(0x756D0000, DLL_PROCESS_ATTACH, 0x0028FD24) in "NSI.DLL" calle +d. DllMain(0x756D0000, DLL_PROCESS_ATTACH, 0x0028FD24) in "NSI.DLL" retur +ned 1 (0x1). DllMain(0x75140000, DLL_PROCESS_ATTACH, 0x0028FD24) in "WS2_32.DLL" ca +lled. DllMain(0x75140000, DLL_PROCESS_ATTACH, 0x0028FD24) in "WS2_32.DLL" re +turned 1 (0x1). DllMain(0x6FE40000, DLL_PROCESS_ATTACH, 0x0028FD24) in "LIBSTDC++-6.DL +L" called. DllMain(0x6FE40000, DLL_PROCESS_ATTACH, 0x0028FD24) in "LIBSTDC++-6.DL +L" returned 1 (0x1). DllMain(0x6DCC0000, DLL_PROCESS_ATTACH, 0x0028FD24) in "PERL524.DLL" c +alled. GetProcAddress(0x75180000 [KERNEL32.DLL], "GetLongPathNameW") called f +rom "PERL524.DLL" at address 0x6DE11159 and returned 0x7519A2DD. DllMain(0x6DCC0000, DLL_PROCESS_ATTACH, 0x0028FD24) in "PERL524.DLL" r +eturned 1 (0x1). GetProcAddress(0x6DCC0000 [PERL524.DLL], "init_Win32CORE") called from + "PERL524.DLL" at address 0x6DE15850 and returned 0x6DE19B80. LoadLibraryExA("c:\strawberry\perl\lib\auto\List\Util\Util.xs.dll", 0x +00000000, LOAD_WITH_ALTERED_SEARCH_PATH) called from "PERL524.DLL" at + address 0x6DE15794. Loaded "UTIL.XS.DLL" at address 0x6F400000. Successfully hooked modul +e. DllMain(0x6F400000, DLL_PROCESS_ATTACH, 0x00000000) in "UTIL.XS.DLL" c +alled. DllMain(0x6F400000, DLL_PROCESS_ATTACH, 0x00000000) in "UTIL.XS.DLL" r +eturned 1 (0x1). LoadLibraryExA("c:\strawberry\perl\lib\auto\List\Util\Util.xs.dll", 0x +00000000, LOAD_WITH_ALTERED_SEARCH_PATH) returned 0x6F400000. GetProcAddress(0x6F400000 [UTIL.XS.DLL], "boot_List__Util") called fro +m "PERL524.DLL" at address 0x6DE19681 and returned 0x6F4084E0. LoadLibraryExA("c:\strawberry\perl\vendor\lib\auto\Win32\API\API.xs.dl +l", 0x00000000, LOAD_WITH_ALTERED_SEARCH_PATH) called from "PERL524.D +LL" at address 0x6DE15794. Loaded "API.XS.DLL" at address 0x61F00000. Successfully hooked module +. DllMain(0x61F00000, DLL_PROCESS_ATTACH, 0x00000000) in "API.XS.DLL" ca +lled. DllMain(0x61F00000, DLL_PROCESS_ATTACH, 0x00000000) in "API.XS.DLL" re +turned 1 (0x1). LoadLibraryExA("c:\strawberry\perl\vendor\lib\auto\Win32\API\API.xs.dl +l", 0x00000000, LOAD_WITH_ALTERED_SEARCH_PATH) returned 0x61F00000. GetProcAddress(0x61F00000 [API.XS.DLL], "boot_Win32__API") called from + "PERL524.DLL" at address 0x6DE19681 and returned 0x61F038D0. LoadLibraryExA("c:\strawberry\perl\vendor\lib\auto\Package\Stash\XS\XS +.xs.dll", 0x00000000, LOAD_WITH_ALTERED_SEARCH_PATH) called from "PER +L524.DLL" at address 0x6DE15794. Loaded "XS.XS.DLL" at address 0x6A200000. Successfully hooked module. DllMain(0x6A200000, DLL_PROCESS_ATTACH, 0x00000000) in "XS.XS.DLL" cal +led. DllMain(0x6A200000, DLL_PROCESS_ATTACH, 0x00000000) in "XS.XS.DLL" ret +urned 1 (0x1). LoadLibraryExA("c:\strawberry\perl\vendor\lib\auto\Package\Stash\XS\XS +.xs.dll", 0x00000000, LOAD_WITH_ALTERED_SEARCH_PATH) returned 0x6A200 +000. GetProcAddress(0x6A200000 [XS.XS.DLL], "boot_Package__Stash__XS") call +ed from "PERL524.DLL" at address 0x6DE19681 and returned 0x6A2042B0. LoadLibraryExA("c:\strawberry\perl\lib\auto\Hash\Util\FieldHash\FieldH +ash.xs.dll", 0x00000000, LOAD_WITH_ALTERED_SEARCH_PATH) called from " +PERL524.DLL" at address 0x6DE15794. Loaded "FIELDHASH.XS.DLL" at address 0x62940000. Successfully hooked +module. DllMain(0x62940000, DLL_PROCESS_ATTACH, 0x00000000) in "FIELDHASH.XS.D +LL" called. DllMain(0x62940000, DLL_PROCESS_ATTACH, 0x00000000) in "FIELDHASH.XS.D +LL" returned 1 (0x1). LoadLibraryExA("c:\strawberry\perl\lib\auto\Hash\Util\FieldHash\FieldH +ash.xs.dll", 0x00000000, LOAD_WITH_ALTERED_SEARCH_PATH) returned 0x62 +940000. GetProcAddress(0x62940000 [FIELDHASH.XS.DLL], "boot_Hash__Util__FieldH +ash") called from "PERL524.DLL" at address 0x6DE19681 and returned 0x +62942880. LoadLibraryExA("c:\strawberry\perl\lib\auto\Cwd\Cwd.xs.dll", 0x0000000 +0, LOAD_WITH_ALTERED_SEARCH_PATH) called from "PERL524.DLL" at addres +s 0x6DE15794. Loaded "CWD.XS.DLL" at address 0x6F540000. Successfully hooked module +. DllMain(0x6F540000, DLL_PROCESS_ATTACH, 0x00000000) in "CWD.XS.DLL" ca +lled. DllMain(0x6F540000, DLL_PROCESS_ATTACH, 0x00000000) in "CWD.XS.DLL" re +turned 1 (0x1). LoadLibraryExA("c:\strawberry\perl\lib\auto\Cwd\Cwd.xs.dll", 0x0000000 +0, LOAD_WITH_ALTERED_SEARCH_PATH) returned 0x6F540000. GetProcAddress(0x6F540000 [CWD.XS.DLL], "boot_Cwd") called from "PERL5 +24.DLL" at address 0x6DE19681 and returned 0x6F542990. LoadLibraryExA("c:\strawberry\perl\lib\auto\Fcntl\Fcntl.xs.dll", 0x000 +00000, LOAD_WITH_ALTERED_SEARCH_PATH) called from "PERL524.DLL" at ad +dress 0x6DE15794. Loaded "FCNTL.XS.DLL" at address 0x64DC0000. Successfully hooked modu +le. DllMain(0x64DC0000, DLL_PROCESS_ATTACH, 0x00000000) in "FCNTL.XS.DLL" +called. DllMain(0x64DC0000, DLL_PROCESS_ATTACH, 0x00000000) in "FCNTL.XS.DLL" +returned 1 (0x1). LoadLibraryExA("c:\strawberry\perl\lib\auto\Fcntl\Fcntl.xs.dll", 0x000 +00000, LOAD_WITH_ALTERED_SEARCH_PATH) returned 0x64DC0000. GetProcAddress(0x64DC0000 [FCNTL.XS.DLL], "boot_Fcntl") called from "P +ERL524.DLL" at address 0x6DE19681 and returned 0x64DC1AD0. LoadLibraryExA("c:\strawberry\perl\vendor\lib\auto\Win32\Console\ANSI\ +ANSI.xs.dll", 0x00000000, LOAD_WITH_ALTERED_SEARCH_PATH) called from +"PERL524.DLL" at address 0x6DE15794. Loaded "ANSI.XS.DLL" at address 0x6C980000. Successfully hooked modul +e. DllMain(0x6C980000, DLL_PROCESS_ATTACH, 0x00000000) in "ANSI.XS.DLL" c +alled. GetProcAddress(0x75180000 [KERNEL32.DLL], "GetConsoleWindow") called f +rom "ANSI.XS.DLL" at address 0x6C984338 and returned 0x752383FD. GetProcAddress(0x75180000 [KERNEL32.DLL], "SetConsoleDisplayMode") cal +led from "ANSI.XS.DLL" at address 0x6C98437C and returned 0x752384BB. GetProcAddress(0x75180000 [KERNEL32.DLL], "WriteFile") called from "AN +SI.XS.DLL" at address 0x6C982A3E and returned 0x75191282. DllMain(0x6C980000, DLL_PROCESS_ATTACH, 0x00000000) in "ANSI.XS.DLL" r +eturned 1 (0x1). LoadLibraryExA("c:\strawberry\perl\vendor\lib\auto\Win32\Console\ANSI\ +ANSI.xs.dll", 0x00000000, LOAD_WITH_ALTERED_SEARCH_PATH) returned 0x6 +C980000. GetProcAddress(0x6C980000 [ANSI.XS.DLL], "boot_Win32__Console__ANSI") +called from "PERL524.DLL" at address 0x6DE19681 and returned 0x6C9844 +E0. LoadLibraryA("AID.dll") called from "API.XS.DLL" at address 0x61F02957 +. Loaded "AID.DLL" at address 0x6A670000. Successfully hooked module. DllMain(0x6A670000, DLL_PROCESS_ATTACH, 0x00000000) in "AID.DLL" calle +d. GetProcAddress(0x75180000 [KERNEL32.DLL], "FlsAlloc") called from "AID +.DLL" at address 0x6A67E940 and returned 0x75194EF3. GetProcAddress(0x75180000 [KERNEL32.DLL], "FlsFree") called from "AID. +DLL" at address 0x6A67E953 and returned 0x7519355F. GetProcAddress(0x75180000 [KERNEL32.DLL], "FlsGetValue") called from " +AID.DLL" at address 0x6A67E966 and returned 0x75191252. GetProcAddress(0x75180000 [KERNEL32.DLL], "FlsSetValue") called from " +AID.DLL" at address 0x6A67E979 and returned 0x751941D0. GetProcAddress(0x75180000 [KERNEL32.DLL], "InitializeCriticalSectionEx +") called from "AID.DLL" at address 0x6A67E98C and returned 0x75194CF +0. GetProcAddress(0x75180000 [KERNEL32.DLL], "CreateEventExW") called fro +m "AID.DLL" at address 0x6A67E99F and returned 0x75214853. GetProcAddress(0x75180000 [KERNEL32.DLL], "CreateSemaphoreExW") called + from "AID.DLL" at address 0x6A67E9B2 and returned 0x752148DD. GetProcAddress(0x75180000 [KERNEL32.DLL], "SetThreadStackGuarantee") c +alled from "AID.DLL" at address 0x6A67E9C5 and returned 0x7519D30F. GetProcAddress(0x75180000 [KERNEL32.DLL], "CreateThreadpoolTimer") cal +led from "AID.DLL" at address 0x6A67E9D8 and returned 0x751AEE8E. GetProcAddress(0x75180000 [KERNEL32.DLL], "SetThreadpoolTimer") called + from "AID.DLL" at address 0x6A67E9EB and returned 0x774718C0. GetProcAddress(0x75180000 [KERNEL32.DLL], "WaitForThreadpoolTimerCallb +acks") called from "AID.DLL" at address 0x6A67E9FE and returned 0x774 +89946. GetProcAddress(0x75180000 [KERNEL32.DLL], "CloseThreadpoolTimer") call +ed from "AID.DLL" at address 0x6A67EA11 and returned 0x774897B9. GetProcAddress(0x75180000 [KERNEL32.DLL], "CreateThreadpoolWait") call +ed from "AID.DLL" at address 0x6A67EA24 and returned 0x751AF098. GetProcAddress(0x75180000 [KERNEL32.DLL], "SetThreadpoolWait") called +from "AID.DLL" at address 0x6A67EA37 and returned 0x77463909. GetProcAddress(0x75180000 [KERNEL32.DLL], "CloseThreadpoolWait") calle +d from "AID.DLL" at address 0x6A67EA4A and returned 0x7748E7D5. GetProcAddress(0x75180000 [KERNEL32.DLL], "FlushProcessWriteBuffers") +called from "AID.DLL" at address 0x6A67EA5D and returned 0x77440BAC. GetProcAddress(0x75180000 [KERNEL32.DLL], "FreeLibraryWhenCallbackRetu +rns") called from "AID.DLL" at address 0x6A67EA70 and returned 0x7750 +0374. GetProcAddress(0x75180000 [KERNEL32.DLL], "GetCurrentProcessorNumber") + called from "AID.DLL" at address 0x6A67EA83 and returned 0x77495799. GetProcAddress(0x75180000 [KERNEL32.DLL], "GetLogicalProcessorInformat +ion") called from "AID.DLL" at address 0x6A67EA96 and returned 0x7521 +4EA9. GetProcAddress(0x75180000 [KERNEL32.DLL], "CreateSymbolicLinkW") calle +d from "AID.DLL" at address 0x6A67EAA9 and returned 0x7520D2E9. GetProcAddress(0x75180000 [KERNEL32.DLL], "SetDefaultDllDirectories") +called from "AID.DLL" at address 0x6A67EABC and returned 0x75AB21AD. GetProcAddress(0x75180000 [KERNEL32.DLL], "EnumSystemLocalesEx") calle +d from "AID.DLL" at address 0x6A67EACF and returned 0x75214997. GetProcAddress(0x75180000 [KERNEL32.DLL], "CompareStringEx") called fr +om "AID.DLL" at address 0x6A67EAE2 and returned 0x75214DF9. GetProcAddress(0x75180000 [KERNEL32.DLL], "GetDateFormatEx") called fr +om "AID.DLL" at address 0x6A67EAF5 and returned 0x75226E06. GetProcAddress(0x75180000 [KERNEL32.DLL], "GetLocaleInfoEx") called fr +om "AID.DLL" at address 0x6A67EB08 and returned 0x75214E99. GetProcAddress(0x75180000 [KERNEL32.DLL], "GetTimeFormatEx") called fr +om "AID.DLL" at address 0x6A67EB1B and returned 0x75226D81. GetProcAddress(0x75180000 [KERNEL32.DLL], "GetUserDefaultLocaleName") +called from "AID.DLL" at address 0x6A67EB2E and returned 0x75214F09. GetProcAddress(0x75180000 [KERNEL32.DLL], "IsValidLocaleName") called +from "AID.DLL" at address 0x6A67EB41 and returned 0x75214F29. GetProcAddress(0x75180000 [KERNEL32.DLL], "LCMapStringEx") called from + "AID.DLL" at address 0x6A67EB54 and returned 0x75214F39. GetProcAddress(0x75180000 [KERNEL32.DLL], "GetCurrentPackageId") calle +d from "AID.DLL" at address 0x6A67EB67 and returned NULL. Error: Die +angegebene Prozedur wurde nicht gefunden (127). GetProcAddress(0x75180000 [KERNEL32.DLL], "GetTickCount64") called fro +m "AID.DLL" at address 0x6A67EB7A and returned 0x751AEEF0. GetProcAddress(0x75180000 [KERNEL32.DLL], "GetFileInformationByHandleE +xW") called from "AID.DLL" at address 0x6A67EB8D and returned NULL. E +rror: Die angegebene Prozedur wurde nicht gefunden (127). GetProcAddress(0x75180000 [KERNEL32.DLL], "SetFileInformationByHandleW +") called from "AID.DLL" at address 0x6A67EBA0 and returned NULL. Err +or: Die angegebene Prozedur wurde nicht gefunden (127). LoadLibraryA("Ftd2xx.dll") called from "AID.DLL" at address 0x6A67D85F +. Loaded "FTD2XX.DLL" at address 0x10000000. Successfully hooked module +. Loaded "SETUPAPI.DLL" at address 0x757B0000. Successfully hooked modu +le. Loaded "CFGMGR32.DLL" at address 0x75620000. Successfully hooked modu +le. Loaded "OLEAUT32.DLL" at address 0x754F0000. Successfully hooked modu +le. Loaded "OLE32.DLL" at address 0x74E80000. Successfully hooked module. Loaded "DEVOBJ.DLL" at address 0x75A70000. Successfully hooked module +. DllMain(0x75620000, DLL_PROCESS_ATTACH, 0x00000000) in "CFGMGR32.DLL" +called. DllMain(0x75620000, DLL_PROCESS_ATTACH, 0x00000000) in "CFGMGR32.DLL" +returned 1 (0x1). DllMain(0x74E80000, DLL_PROCESS_ATTACH, 0x00000000) in "OLE32.DLL" cal +led. DllMain(0x74E80000, DLL_PROCESS_ATTACH, 0x00000000) in "OLE32.DLL" ret +urned 1 (0x1). DllMain(0x754F0000, DLL_PROCESS_ATTACH, 0x00000000) in "OLEAUT32.DLL" +called. DllMain(0x754F0000, DLL_PROCESS_ATTACH, 0x00000000) in "OLEAUT32.DLL" +returned 1 (0x1). DllMain(0x75A70000, DLL_PROCESS_ATTACH, 0x00000000) in "DEVOBJ.DLL" ca +lled. DllMain(0x75A70000, DLL_PROCESS_ATTACH, 0x00000000) in "DEVOBJ.DLL" re +turned 1 (0x1). DllMain(0x757B0000, DLL_PROCESS_ATTACH, 0x00000000) in "SETUPAPI.DLL" +called. LoadLibraryExW("API-MS-Win-Core-LocalRegistry-L1-1-0.dll", 0x00000000, + LOAD_WITH_ALTERED_SEARCH_PATH) called from "SETUPAPI.DLL" at address + 0x757C1188. LoadLibraryExW("API-MS-Win-Core-LocalRegistry-L1-1-0.dll", 0x00000000, + LOAD_WITH_ALTERED_SEARCH_PATH) returned 0x75180000. GetProcAddress(0x75180000 [KERNEL32.DLL], "RegQueryValueExW") called f +rom "SETUPAPI.DLL" at address 0x757C1141 and returned 0x75191F0E. DllMain(0x757B0000, DLL_PROCESS_ATTACH, 0x00000000) in "SETUPAPI.DLL" +returned 1 (0x1). DllMain(0x10000000, DLL_PROCESS_ATTACH, 0x00000000) in "FTD2XX.DLL" ca +lled. GetProcAddress(0x75180000 [KERNEL32.DLL], "FlsAlloc") called from "FTD +2XX.DLL" at address 0x1001190F and returned 0x75194EF3. GetProcAddress(0x75180000 [KERNEL32.DLL], "FlsGetValue") called from " +FTD2XX.DLL" at address 0x1001191C and returned 0x75191252. GetProcAddress(0x75180000 [KERNEL32.DLL], "FlsSetValue") called from " +FTD2XX.DLL" at address 0x10011929 and returned 0x751941D0. GetProcAddress(0x75180000 [KERNEL32.DLL], "FlsFree") called from "FTD2 +XX.DLL" at address 0x10011936 and returned 0x7519355F. GetProcAddress(0x75180000 [KERNEL32.DLL], "EncodePointer") called from + "FTD2XX.DLL" at address 0x10011475 and returned 0x7745B15F. GetProcAddress(0x75180000 [KERNEL32.DLL], "EncodePointer") called from + "FTD2XX.DLL" at address 0x10011475 and returned 0x7745B15F. GetProcAddress(0x75180000 [KERNEL32.DLL], "EncodePointer") called from + "FTD2XX.DLL" at address 0x10011475 and returned 0x7745B15F. GetProcAddress(0x75180000 [KERNEL32.DLL], "EncodePointer") called from + "FTD2XX.DLL" at address 0x10011475 and returned 0x7745B15F. GetProcAddress(0x75180000 [KERNEL32.DLL], "EncodePointer") called from + "FTD2XX.DLL" at address 0x10011475 and returned 0x7745B15F. GetProcAddress(0x75180000 [KERNEL32.DLL], "EncodePointer") called from + "FTD2XX.DLL" at address 0x10011475 and returned 0x7745B15F. GetProcAddress(0x75180000 [KERNEL32.DLL], "EncodePointer") called from + "FTD2XX.DLL" at address 0x10011475 and returned 0x7745B15F. GetProcAddress(0x75180000 [KERNEL32.DLL], "DecodePointer") called from + "FTD2XX.DLL" at address 0x100114F0 and returned 0x77459765. GetProcAddress(0x75180000 [KERNEL32.DLL], "DecodePointer") called from + "FTD2XX.DLL" at address 0x100114F0 and returned 0x77459765. GetProcAddress(0x75180000 [KERNEL32.DLL], "EncodePointer") called from + "FTD2XX.DLL" at address 0x10011601 and returned 0x7745B15F. GetProcAddress(0x75180000 [KERNEL32.DLL], "DecodePointer") called from + "FTD2XX.DLL" at address 0x10011611 and returned 0x77459765. DllMain(0x10000000, DLL_PROCESS_ATTACH, 0x00000000) in "FTD2XX.DLL" re +turned 1 (0x1). LoadLibraryA("Ftd2xx.dll") returned 0x10000000. GetProcAddress(0x10000000 [FTD2XX.DLL], "FT_ListDevices") called from +"AID.DLL" at address 0x6A67D878 and returned 0x10004E90. GetProcAddress(0x10000000 [FTD2XX.DLL], "FT_Open") called from "AID.DL +L" at address 0x6A67D88F and returned 0x100049F0. GetProcAddress(0x10000000 [FTD2XX.DLL], "FT_Close") called from "AID.D +LL" at address 0x6A67D8A6 and returned 0x100025D0. GetProcAddress(0x10000000 [FTD2XX.DLL], "FT_ResetDevice") called from +"AID.DLL" at address 0x6A67D8BD and returned 0x10002770. GetProcAddress(0x10000000 [FTD2XX.DLL], "FT_Read") called from "AID.DL +L" at address 0x6A67D8D4 and returned 0x10002640. GetProcAddress(0x10000000 [FTD2XX.DLL], "FT_Write") called from "AID.D +LL" at address 0x6A67D8EB and returned 0x100026A0. GetProcAddress(0x10000000 [FTD2XX.DLL], "FT_Purge") called from "AID.D +LL" at address 0x6A67D902 and returned 0x100029D0. GetProcAddress(0x10000000 [FTD2XX.DLL], "FT_GetQueueStatus") called fr +om "AID.DLL" at address 0x6A67D919 and returned 0x10002A40. GetProcAddress(0x10000000 [FTD2XX.DLL], "FT_GetStatus") called from "A +ID.DLL" at address 0x6A67D930 and returned 0x10002B10. GetProcAddress(0x10000000 [FTD2XX.DLL], "FT_EE_Program") called from " +AID.DLL" at address 0x6A67D947 and returned 0x10005160. GetProcAddress(0x10000000 [FTD2XX.DLL], "FT_EE_Read") called from "AID +.DLL" at address 0x6A67D95E and returned 0x10002CD0. GetProcAddress(0x10000000 [FTD2XX.DLL], "FT_GetLatencyTimer") called f +rom "AID.DLL" at address 0x6A67D975 and returned 0x10003A00. GetProcAddress(0x10000000 [FTD2XX.DLL], "FT_SetLatencyTimer") called f +rom "AID.DLL" at address 0x6A67D98C and returned 0x100039D0. GetProcAddress(0x10000000 [FTD2XX.DLL], "FT_SetBitMode") called from " +AID.DLL" at address 0x6A67D9A3 and returned 0x10003A30. GetProcAddress(0x10000000 [FTD2XX.DLL], "FT_GetBitMode") called from " +AID.DLL" at address 0x6A67D9BA and returned 0x10003A70. GetProcAddress(0x10000000 [FTD2XX.DLL], "FT_SetUSBParameters") called +from "AID.DLL" at address 0x6A67D9D1 and returned 0x10003AA0. GetProcAddress(0x10000000 [FTD2XX.DLL], "FT_SetTimeouts") called from +"AID.DLL" at address 0x6A67D9E8 and returned 0x10002A00. GetProcAddress(0x10000000 [FTD2XX.DLL], "FT_OpenEx") called from "AID. +DLL" at address 0x6A67D9FF and returned 0x10004CB0. DllMain(0x6A670000, DLL_PROCESS_ATTACH, 0x00000000) in "AID.DLL" retur +ned 1 (0x1). LoadLibraryA("AID.dll") returned 0x6A670000. GetProcAddress(0x6A670000 [AID.DLL], "KAI_List_Device") called from "A +PI.XS.DLL" at address 0x61F02804 and returned 0x6A672090. GetProcAddress(0x75180000 [KERNEL32.DLL], "RegOpenKeyExW") called from + "SETUPAPI.DLL" at address 0x757BBCBB and returned 0x751922D1. GetProcAddress(0x75180000 [KERNEL32.DLL], "RegCloseKey") called from " +SETUPAPI.DLL" at address 0x757BBD18 and returned 0x7519205F. LoadLibraryExA("WINTRUST.dll", 0x00000000, 0x00000000) called from "SE +TUPAPI.DLL" at address 0x757F4A75. Loaded "WINTRUST.DLL" at address 0x76DA0000. Successfully hooked modu +le. Loaded "CRYPT32.DLL" at address 0x76810000. Successfully hooked modul +e. Loaded "MSASN1.DLL" at address 0x75A60000. Successfully hooked module +. DllMain(0x75A60000, DLL_PROCESS_ATTACH, 0x00000000) in "MSASN1.DLL" ca +lled. DllMain(0x75A60000, DLL_PROCESS_ATTACH, 0x00000000) in "MSASN1.DLL" re +turned 1 (0x1). DllMain(0x76810000, DLL_PROCESS_ATTACH, 0x00000000) in "CRYPT32.DLL" c +alled. DllMain(0x76810000, DLL_PROCESS_ATTACH, 0x00000000) in "CRYPT32.DLL" r +eturned 1 (0x1). DllMain(0x76DA0000, DLL_PROCESS_ATTACH, 0x00000000) in "WINTRUST.DLL" +called. DllMain(0x76DA0000, DLL_PROCESS_ATTACH, 0x00000000) in "WINTRUST.DLL" +returned 1 (0x1). LoadLibraryExA("WINTRUST.dll", 0x00000000, 0x00000000) returned 0x76DA +0000. GetProcAddress(0x76DA0000 [WINTRUST.DLL], "WinVerifyTrust") called fro +m "SETUPAPI.DLL" at address 0x757BB521 and returned 0x76DA273A. GetProcAddress(0x6A670000 [AID.DLL], "KAI_Open") called from "API.XS.D +LL" at address 0x61F02804 and returned 0x6A6720B0. GetProcAddress(0x6A670000 [AID.DLL], "KSENT_TimerSet") called from "AP +I.XS.DLL" at address 0x61F02804 and returned 0x6A67C2B0. GetProcAddress(0x6A670000 [AID.DLL], "KSENT_RXInit") called from "API. +XS.DLL" at address 0x61F02804 and returned 0x6A67B7A0. GetProcAddress(0x6A670000 [AID.DLL], "KSENT_TXInit") called from "API. +XS.DLL" at address 0x61F02804 and returned 0x6A67BE30. GetProcAddress(0x6A670000 [AID.DLL], "KSENT_OptionsSet") called from " +API.XS.DLL" at address 0x61F02804 and returned 0x6A67B3C0. GetProcAddress(0x6A670000 [AID.DLL], "KSENT_TX") called from "API.XS.D +LL" at address 0x61F02804 and returned 0x6A67BCF0. STATUS_STACK_BUFFER_OVERRUN encountered Exited "PERL.EXE" (process 0x2028) with code -1073740791 (0xC0000409).

      Unfortunately, I am unable to figure out what leads to the STATUS_STACK_BUFFER_OVERRUN. Any pointers would be helpful