0
from ctypes import *
from capstone import *

k32 = windll.kernel32
dbghelp = cdll.LoadLibrary('dbghelp.dll')

handle = k32.LoadLibraryEx(modulePath, 0, 1) #DONT_RESOLVE_DLL_REFERENCES
hproc = k32.GetCurrentProcess()

ret = dbghelp.SymInitialize(hproc, sympath, 1)

SymInitialize は 0 を返します

GetLastError が -1073741813 を返す

私が間違っているのは、C++ で書かれた同じコードが問題なく動作することです。

4

1 に答える 1