Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. Win32 Console Programming Question

Win32 Console Programming Question

Scheduled Pinned Locked Moved C / C++ / MFC
3 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • T Offline
    T Offline
    the_grip
    wrote on last edited by
    #1

    How can i handle unexpected exits to the program (i.e. a user hits ctrl+break) so that i can clean up memory allocated? Thanks!

    J L 2 Replies Last reply
    0
    • T the_grip

      How can i handle unexpected exits to the program (i.e. a user hits ctrl+break) so that i can clean up memory allocated? Thanks!

      J Offline
      J Offline
      Joaquin M Lopez Munoz
      wrote on last edited by
      #2

      See signal. Joaquín M López Muñoz Telefónica, Investigación y Desarrollo

      1 Reply Last reply
      0
      • T the_grip

        How can i handle unexpected exits to the program (i.e. a user hits ctrl+break) so that i can clean up memory allocated? Thanks!

        L Offline
        L Offline
        Lost User
        wrote on last edited by
        #3

        I think this should server your purpose: BOOL WINAPI ConsoleHandler(DWORD dwCtrlType) { switch(dwCtrlType) { case CTRL_CLOSE_EVENT: case CTRL_C_EVENT: case CTRL_BREAK_EVENT: case CTRL_LOGOFF_EVENT: case CTRL_SHUTDOWN_EVENT: { // Cleanup code return TRUE; } } return FALSE; } int _tmain( ...) { SetConsoleCtrlHandler(ConsoleHandler, TRUE); // // Other code goes here }

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups