Hi there,

Sorry for the previous incomplete email.

I'm on windows, and used the dbghelp.dll's function SymLoadModuleEx and
SymLoadModule64.
The problem is that they will get 9 argv when compiled! You can debug to
confirm.

As dbghelp.chm says:
DWORD64 WINAPI SymLoadModuleEx(
  __in          HANDLE hProcess,
  __in          HANDLE hFile,
  __in          PCTSTR ImageName,
  __in          PCTSTR ModuleName,
  __in          DWORD64 BaseOfDll,
  __in          DWORD DllSize,
  __in          PMODLOAD_DATA Data,
  __in          DWORD Flags
);

DWORD64 WINAPI SymLoadModule64(
  __in          HANDLE hProcess,
  __in          HANDLE hFile,
  __in          PCSTR ImageName,
  __in          PCSTR ModuleName,
  __in          DWORD64 BaseOfDll,
  __in          DWORD SizeOfDll
);

They both have the DWORD64 format argv.

Can any body help?




_______________________________________________
Tinycc-devel mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/tinycc-devel

Reply via email to