VS 2003 to VS 2005 difficulties

  • Thread starter Thread starter Guest
  • Start date Start date
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.
 
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
 
Back
Top