VS 2003 to VS 2005 difficulties

G

Guest

I removed VS 2003 and all SDKs. I installed VS 2005.

My problem: The Windows XP Bluetooth API appears to be missing in VS 2005.

I re-installed the April 2005 SDK.

My new problem: __CxxFrameHandler3 errors at link time.

My Question: What is the best way to compile a native win32 bluetooth
application using VS 2005.
 
C

Carl Daniel [VC++ MVP]

Ben said:
I removed VS 2003 and all SDKs. I installed VS 2005.

My problem: The Windows XP Bluetooth API appears to be missing in VS 2005.

I re-installed the April 2005 SDK.

My new problem: __CxxFrameHandler3 errors at link time.

My Question: What is the best way to compile a native win32 bluetooth
application using VS 2005.

Add /verbose to your linker settings and see if you're pulling in libcp.lib
or any other C/C++ runtime library from the SDK. If you are, you may need
to adjust the order of your library directories, or possibly use
/nodefaultlib to suppress the default libraries and add the VC++ libraries
explicitly (with their full path) to the input files section of your linker
settings

-cd
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top