VS 2005 C++ and sphelper.h - SAPI

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Our applications that use this file no longer compile due to new restrictions
in the VS 2005 C__ compiler.

c:\program files\microsoft speech sdk 5.1\include\sphelper.h(769) : error
C4430: missing type specifier - int assumed. Note: C++ does not support
default-int
c:\program files\microsoft speech sdk 5.1\include\sphelper.h(1419) : error
C4430: missing type specifier - int assumed. Note: C++ does not support
default-int
c:\program files\microsoft speech sdk 5.1\include\sphelper.h(2373) : error
C2065: 'psz' : undeclared identifier


These are critical apps - what can we do?

Thanks,
Dan
 
Dan said:
Our applications that use this file no longer compile due to new
restrictions in the VS 2005 C++ compiler.

c:\program files\microsoft speech sdk 5.1\include\sphelper.h(769) :
error C4430: missing type specifier - int assumed. Note: C++ does not
support default-int
c:\program files\microsoft speech sdk 5.1\include\sphelper.h(1419) :
error C4430: missing type specifier - int assumed. Note: C++ does not
support default-int
c:\program files\microsoft speech sdk 5.1\include\sphelper.h(2373) :
error C2065: 'psz' : undeclared identifier


These are critical apps - what can we do?

Three things off the top of my head -

Fix the header file yourself.

Continue to use VC7.1 (2003).

Contact Microsoft Product Support.

-cd
 
Back
Top