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

  • Home
  • SEARCH
  • 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 3220112
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T15:43:26+00:00 2026-05-17T15:43:26+00:00

I’m relatively new to Visual C++. I’m trying to build a module to consume

  • 0

I’m relatively new to Visual C++. I’m trying to build a module to consume log events generated by the IIS 7.0 server in order to be able to analyze these logs in real-time. I found a Microsoft article which provides code that accomplishes the real-time capture:


http://learn.iis.net/page.aspx/581/advanced-logging-for-iis-70—real-time-logging#module


After some work, I’ve gotten this code to compile into a DLL on my machine (64-bit Windows XP with Visual Studio .NET 2008). I’m curious about the double initiation (?) of the m_hEventLog ‘event viewer’. I’ve reproduced the constructor and the line in the private section which both seem to create a handle to the event viewer.

The constructor:

MyGlobalModule()    
{       
    m_hEventLog = RegisterEventSource( NULL, L"IISADMIN" );    
}

private:    
HANDLE m_hEventLog;

My question: Why does m_hEventLog need to be declared twice?

Thanks in advance,

-Eric

  • 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-17T15:43:26+00:00Added an answer on May 17, 2026 at 3:43 pm

    This line:

    private:
    HANDLE m_hEventLog;
    

    is declaration of the variable m_hEventLog. It means that when an object of type MyGlobalModule will be declared, that will contain a member named m_hEventLog. When the object is declared, or in other words, constructed, the constructor is called. It executes the following line:

    m_hEventLog = RegisterEventSource( NULL, L"IISADMIN" );
    

    The this line will execute, RegisterEventSource() will be called and its return value will be assigned to m_hEventLog.

    EDIT

    Consider the following program:

    class A
    {
    public:
        A() : a(0) {}
    
        int get_a() const {return a;}
        void set_a(int na) {a = na;}
    
    private:
        int a;
    };
    
    int main()
    {
        return 0;
    }
    

    When this program is executed, nothing actually happens for class A because there is no variable declared defined of type A. If the main() function is written in this way:

    int main()
    {
        A a;
    
        return 0;
    }
    

    then an object of type A is declared defined (provided that compiler didn’t optimize anything). It hold an integer inside it (the member variable a). A‘s constructor will be called so that A is initialized. And the constructor will initialize A‘s a to 0. Note I used initializer list to initialize A::a.

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

Sidebar

Related Questions

No related questions found

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.