|
-
Dec 16th, 2003, 04:17 AM
#1
Thread Starter
New Member
Compiling for ACAD 2004
We can crossing our apllication to support Autodesk2004 and we have still error in the include process. We have this error in file ATLCORE.H : d:\Programme\Vc7\atlmfc\include\atlcore.h(52): error C2447: '{' : Funktionskopf fehlt - Parameterliste im alten Stil?
#include <crtdbg.h>
#endif
#include <atlexcept.h>
#include <atlsimpcoll.h>
namespace ATL
{
/////////////////////////////////////////////////////////////////////////////
// Verify that a null-terminated string points to valid memory
//inline BOOL AtlIsValidString(LPCWSTR psz, size_t nMaxLength = INT_MAX)
{
// Implement ourselves because ::IsBadStringPtrW() isn't implemented on Win9x.
if ((psz == Null) || (nMaxLength == 0))
return FALSE;
LPCWSTR pch;
LPCWSTR pchEnd;
__try
I trought close this bracket, disable this bracket, make new bracket, add code in to, but neither of this variant were well.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|