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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T02:20:16+00:00 2026-05-11T02:20:16+00:00

I use VS6 and ATL with CServiceModule to implement a custom windows service. In

  • 0

I use VS6 and ATL with CServiceModule to implement a custom windows service. In case of a fatal error service should shut itself down. Since CServiceModule is available via _Module variable in all files I thought of something like this to cause CServiceModule::Run to stop pumping messages and shut itself down

PostThreadMessage(_Module.dwThreadID, WM_QUIT, 0, 0); 

Is this correct or you have better idea ?

  • 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. 2026-05-11T02:20:16+00:00Added an answer on May 11, 2026 at 2:20 am

    For self shutdown you send command to Service Manager. Try this sample :

     BOOL StopServiceCmd ( const char * szServiceName ) {      SC_HANDLE schService;      SC_HANDLE schSCManager;      SERVICE_STATUS ssStatus;       // current status of the service      BOOL bRet;     int iCont=0;      schSCManager = OpenSCManager(          NULL, // machine (NULL == local)          NULL, // database (NULL == default)          SC_MANAGER_ALL_ACCESS // access required          );      if ( schSCManager )      {          schService = OpenService(schSCManager, szServiceName, SERVICE_ALL_ACCESS);           if (schService)          {              // try to stop the service              if ( ControlService( schService, SERVICE_CONTROL_STOP, &ssStatus ) )              {                  Sleep( 1000 );                   while( QueryServiceStatus( schService, &ssStatus ) )                  {                      iCont++;                     if ( ssStatus.dwCurrentState == SERVICE_STOP_PENDING )                      {                          Sleep( 1000 );                          if ( iCont > 4 ) break;                     }                      else                          break;                  }                   if ( ssStatus.dwCurrentState == SERVICE_STOPPED )                      bRet = TRUE;                  else                      bRet = FALSE;              }               CloseServiceHandle(schService);          }          else              bRet = FALSE;           CloseServiceHandle(schSCManager);      }      else          bRet = FALSE;      return bRet; }  
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Use Case: Admin should be able to create user, and it should not attempt
Use-case: A Xib is defined with a single simple UIView A custom view class
Use Case Show a photo uploaded by the user in a square box with
Use case: I find a piece of code that I do not understand at
Use case example: Client A comes to request sales information, enters their zip code
Use case: You have 2-3 files displayed in your MacVim window(s). You press ctrl+Q
use case example I have a servlet that is receiving login requests. If a
Which version of Visual Studio should I use for compiling PHP 5.3 and its
Use case: we have some project meta-data files which we want tracked, but are
I am just wondering why programmers who program in C++ for windows always use

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.