Problem using CopyMemory

  • Thread starter Thread starter PS
  • Start date Start date
P

PS

Guest
Hi Everybody,

I have a function that uses CopyMemory(). While compiling for x64, it
gives me the following error
"unresolved external symbol __imp_RtlCopyMemory referenced in
function"
The documentation says to include <windows.h>, which I have.
Can anyone tell me whether CopyMemory() is available for x64?
Waiting for solution eagerly.


TIA,
PS.
 
Re: Problem using CopyMemory

You probably need to configure the path to the 64bit library (specifically
for 64bit compilations) in your development environment - best would be to
make enquirements to a developer newsgroup, here we mostly deal with the OS
user interface.

The Old Visual Studio 5 & 6 had a 'Projects' menu item where these things
could be done under the 'Properties' heading.


Tony. . .



"PS" <puneet.p.shah@gmail.com> wrote in message
news:2bfa11be-e668-485f-a954-f9363395bbb4@e23g2000prf.googlegroups.com...
> Hi Everybody,
>
> I have a function that uses CopyMemory(). While compiling for x64, it
> gives me the following error
> "unresolved external symbol __imp_RtlCopyMemory referenced in
> function"
> The documentation says to include <windows.h>, which I have.
> Can anyone tell me whether CopyMemory() is available for x64?
> Waiting for solution eagerly.
>
>
> TIA,
> PS.
 
Back
Top