The MASM Forum Archive 2004 to 2012

Project Support Forums => 64 Bit Assembler => Topic started by: dacid on August 18, 2008, 08:48:00 AM

Title: CreateToolhelp32Snapshot & 64 bits
Post by: dacid on August 18, 2008, 08:48:00 AM
Im coding a 32bit application under 64bits Windows Vista:



invoke CreateToolhelp32Snapshot,TH32CS_SNAPMODULE,dwPID


In a 32bits process works ok, in 64bit fails with "ERROR_PARTIAL_COPY":

MSDN says:

Quote

If the specified process is a 64-bit process and the caller is a 32-bit process, this function fails and the last error code is ERROR_PARTIAL_COPY (299).


more on MSDN:


Quote
TH32CS_SNAPMODULE
....
64-bit Windows:  Using this flag in a 32-bit process includes the 32-bit modules of the process specified in th32ProcessID, while using it in a 64-bit process includes the 64-bit modules. To include the 32-bit modules of the process specified in th32ProcessID from a 64-bit process, use the TH32CS_SNAPMODULE32 flag.

I cant find the value for "TH32CS_SNAPMODULE32" in windows.inc and 'googling' seems to be = 10. ¿Can anyone confirm this?

I tried:



invoke CreateToolhelp32Snapshot,TH32CS_SNAPMODULE32,dwPID


but same error ERROR_PARTIAL_COPY.

TH32CS_SNAPMODULE32


Quote
This flag can be combined with TH32CS_SNAPMODULE or TH32CS_SNAPALL

I tried:



invoke CreateToolhelp32Snapshot,TH32CS_SNAPMODULE or TH32CS_SNAPMODULE32,dwPID


Same result as using TH32CS_SNAPMODULE.

Any ideas?
Title: Re: CreateToolhelp32Snapshot & 64 bits
Post by: tofu-sensei on August 18, 2008, 12:36:53 PM
Quote from: dacid on August 18, 2008, 08:48:00 AM
I cant find the value for "TH32CS_SNAPMODULE32" in windows.inc and 'googling' seems to be = 10. ¿Can anyone confirm this?
http://msdn.microsoft.com/en-us/library/ms682489(VS.85).aspx
Title: Re: CreateToolhelp32Snapshot & 64 bits
Post by: dacid on August 24, 2008, 08:21:32 AM
Quote
If the specified process is a 64-bit process and the caller is a 32-bit process, this function fails and the last error code is ERROR_PARTIAL_COPY (299).

There is no way to workaround this?