如何在控制台应用程序中处理shutdown \ logoff?

时间:2012-05-21 07:12:44

标签: winapi

我正在用C ++编写控制台应用程序。

我使用SetConsoleCtrlHandler捕获任何关闭的应用程序(CTRL + C,关闭控制台,关闭窗口或注销)。

#include <windows.h> 
#include <stdio.h> 

BOOL CtrlHandler( DWORD fdwCtrlType ) 
{   
  switch( fdwCtrlType ) 
  { 
    // Handle the CTRL-C signal. 
    case CTRL_C_EVENT: 
      printf( "Ctrl-C event\n\n" );
      Beep( 750, 300 );
      return( TRUE );

    // CTRL-CLOSE: confirm that the user wants to exit. 
    case CTRL_CLOSE_EVENT: 
      Beep( 600, 200 ); 
      printf( "Ctrl-Close event\n\n" );
      return( TRUE ); 

    // Pass other signals to the next handler. 
    case CTRL_BREAK_EVENT: 
      Beep( 900, 200 ); 
      printf( "Ctrl-Break event\n\n" );
      return FALSE; 

    case CTRL_LOGOFF_EVENT: 
      Beep( 1000, 200 ); 
      printf( "Ctrl-Logoff event\n\n" );
      return FALSE; 

    case CTRL_SHUTDOWN_EVENT: 
      Beep( 750, 500 ); 
      printf( "Ctrl-Shutdown event\n\n" );
      return FALSE; 

    default: 
      return FALSE; 
  } 
} 

int main( void ) 
{       
  //MessageBoxA(0, "test", "test", 0); // ****************

  if( SetConsoleCtrlHandler( (PHANDLER_ROUTINE) CtrlHandler, TRUE ) ) 
  { 
    printf( "\nThe Control Handler is installed.\n" ); 
    printf( "\n -- Now try pressing Ctrl+C or Ctrl+Break, or" ); 
    printf( "\n    try logging off or closing the console...\n" ); 
    printf( "\n(...waiting in a loop for events...)\n\n" ); 

    while( 1 ){ } 
  } 
  else 
  {
    printf( "\nERROR: Could not set control handler"); 
    return 1;
  }
  return 0;
}

这是msdn示例,它工作正常,直到我取消注释标记行。当我这样做时,我的应用程序处理CTRL + C,CTRL + Break和控制台关闭,但在关闭或注销时它只是关闭而没有任何反应。

Windows 7,MSVC 10 Express Edition

1 个答案:

答案 0 :(得分:1)

只要从控制台应用程序显示对话框,就会为该线程创建一个消息循环。

一旦你有了消息循环,就必须处理WM_ENDSESSIONrelated条消息。