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 7713961
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T02:00:13+00:00 2026-06-01T02:00:13+00:00

I have some legacy C++ code that I am trying to understand a bit

  • 0

I have some legacy C++ code that I am trying to understand a bit better. One issue I am getting confused with is this with a line like this:

#define LOG_TRACE_ERROR(s)  LOG_traceError( _T(__FILE__), __LINE__, s )

which is in a header file. I can see the LOG_TRACE_ERROR is what the code is calling and it passes it a string, and I can see that LOG_traceError is a function that actually does the work, so I assume this line is mapping the two different names for the function together? What is confusing me is why is the parameter list different (just a string for LOG_TRACE_ERROR and (_T(FILE), LINE, s ) for LOG_traceError). Also I cant find _FILE_ or _LINE_ or s defined anywhere so how does the program know what they are?

  • 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-06-01T02:00:14+00:00Added an answer on June 1, 2026 at 2:00 am

    _FILE_ expands to the file name.

    _LINE_ expands to the line number.

    s is the parameter you pass to the macro.

    When you write:

    //file.cpp
    //...
    LOG_TRACE_ERROR("error here"); //line 13
    

    the preprocessor will transform it to:

    //file.cpp
    //...
    LOG_traceError( _T("file.cpp"), "13", "error here" );
    

    _T() is a macro related to UNICODE. If in a unicode environment, it will transform your string to a wchar_t*.

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

Sidebar

Related Questions

I have some legacy code that I am now trying to re-use under Spring.
We have some legacy code that needs to identify in the Page_Load which event
I have some legacy code that was used to monitor my applications cpu,memory etc
I have some legacy C code that I recently compiled on Linux. On the
We have some legacy ASP.NET code that detects if a request is secure, and
I have been working on some legacy C++ code that uses variable length structures
I have some really complicated legacy code I've been working on that crashes when
I have a legacy code to maintain and while trying to understand the logic
I'm trying to clean up some legacy code and have some unchecked cast warnings
I have some legacy code that provides a list of the available COM ports

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.