Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 277385
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T01:04:18+00:00 2026-05-12T01:04:18+00:00

When I compile a project I get this error: C:\DATOSA~1\FAXENG~1>nmake /f Makefile.vc clean Microsoft

  • 0

When I compile a project I get this error:

C:\DATOSA~1\FAXENG~1>nmake /f
Makefile.vc clean

Microsoft (R) Program Maintenance
Utility Version 9.00.21022.08
Copyright (C) Microsoft Corporation.
All rights reserved.

    cd src
    nmake /nologo /f Makefile.vc clean
    del /F *.obj *.lib *.dll *.exe *.res *.exp
    cd..
    cd tools
    nmake /nologo /f Makefile.vc clean
    del *.obj *.lib *.dll *.exe
    No se encuentra C:\DATOSA~1\FAXENG~1\tools\*.obj
    cd ..

C:\DATOSA~1\FAXENG~1>nmake /f
Makefile.vc

Microsoft (R) Program Maintenance
Utility Version 9.00.21022.08
Copyright (C) Microsoft Corporation.
All rights reserved.

    cd src
    nmake /nologo /f Makefile.vc
    cl /nologo /MT /W3 /EHsc /O2 /I "..\..\tiff-3.8.2\libtiff" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /c ClassOne.cpp ClassOne.cpp
    cl /nologo /MT /W3 /EHsc /O2 /I "..\..\tiff-3.8.2\libtiff" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /c ClassOnePointZero. ClassOnePointZero.cpp
    cl /nologo /MT /W3 /EHsc /O2 /I "..\..\tiff-3.8.2\libtiff" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /c ClassTwo.cpp ClassTwo.cpp
    cl /nologo /MT /W3 /EHsc /O2 /I "..\..\tiff-3.8.2\libtiff" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /c ClassTwoPointOne.c ClassTwoPointOne.cpp
    cl /nologo /MT /W3 /EHsc /O2 /I "..\..\tiff-3.8.2\libtiff" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /c ClassTwoPointZero. ClassTwoPointZero.cpp
    cl /nologo /MT /W3 /EHsc /O2 /I "..\..\tiff-3.8.2\libtiff" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /c ClassZero.cpp ClassZero.cpp
    cl /nologo /MT /W3 /EHsc /O2 /I "..\..\tiff-3.8.2\libtiff" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /c CommPort.cpp CommPort.cpp
    cl /nologo /MT /W3 /EHsc /O2 /I "..\..\tiff-3.8.2\libtiff" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /c ECMBuffer.cpp ECMBuffer.cpp
    cl /nologo /MT /W3 /EHsc /O2 /I "..\..\tiff-3.8.2\libtiff" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /c excepthandler.cpp excepthandler.cpp
    cl /nologo /MT /W3 /EHsc /O2 /I "..\..\tiff-3.8.2\libtiff" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /c FaxAPI.cpp FaxAPI.cpp
    FaxAPI.cpp(143) : error C2061: syntax error : identifier 'CClassZero'
    NMAKE : fatal error U1077: '"c:\Archivos de programa\Microsoft Visual Studio 9.0\VC\BIN\cl.EXE"' : return code '0x2' Stop.
    NMAKE : fatal error U1077: '"c:\Archivos de programa\Microsoft Visual Studio 9.0\VC\BIN\nmake.EXE"' : return code '0x2' Stop.

The only thing I did was copy and paste ClassTwoPointOne files into ClassZero files and change names…

ClassTwoPointOne.h:

#ifndef CLASSTWOPOINTONE_H
#define CLASSTWOPOINTONE_H

#include "ClassTwoPointZero.h"

class CClassTwoPointOne : public CClassTwoPointZero
{
public:
    CClassTwoPointOne();
    virtual ~CClassTwoPointOne();

    virtual void SetFClass(void);
};

#endif // CLASSTWOPOINTONE_H

ClassTwoPointOne.cpp:

#include "stdafx.h"
#include "ClassTwoPointOne.h"

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CClassTwoPointOne::CClassTwoPointOne()
{
    m_sEIAClass = "2.1";
    m_nScanTime = 0;
}

CClassTwoPointOne::~CClassTwoPointOne()
{

}

void CClassTwoPointOne::SetFClass(void)
{
    SendCommand( COMMAND_SET_FCLASS_2_1);
}

ClassZero.h:

#ifndef CLASSZERO_H
#define CLASSZERO_H

#include "VoiceModem.h"

class CClassZero : public CVoiceModem
{
public:
    CClassZero();
    virtual ~CClassZero();
};

#endif // CLASSZERO_H

ClassZero.cpp:

#include "stdafx.h"
#include "ClassZero.h"

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CClassZero::CClassZero()
{
}

CClassZero::~CClassZero()
{
}

I don’t understand whats wrong… anyone can help?

Thanks a lot

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T01:04:19+00:00Added an answer on May 12, 2026 at 1:04 am

    FaxAPI.cpp(143) : error C2061: syntax
    error : identifier ‘CClassZero’

    The error is at or near line number 143, in file FaxAPI.cpp.
    The error is related to the identifier CClassZero

    (Possibly being undefined, or misused. Possibly something as mundane as a missing semicolon).

    If you cannot find the error in FaxAPI.cpp yourself, you need to provide us with the relevant part of that file.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When I try to compile this project I get the following error. I would
I get this error the first time I build/compile a particular project after opening
When I try to compile I get this error: 1>------ Build started: Project: snake,
When I compile my Android Project I always get this Error: Error generating final
When i compile my cocos2d mac project i get this error: Undefined symbols for
While making a project with Makefile, I get this error: error: implicit declaration of
When attempting to compile my C# project, I get the following error: 'C:\Documents and
i'm using QT Creator 1.3.1 and trying to compile, but get this error... please
I have a project in C# and I get this error every time I
I copied an existing project and renamed the folder. Now I get this error

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.