win32 c++控制檯應用程序捕獲ctrl+c程序關閉事件

#include <stdio.h> #include <stdlib.h> bool ctrlhandler(DWORD fdwctrltype) { switch (fdwctrltype) { // handle the ctrl-c signal. case CTRL_C_EVENT: printf("ctrl-c event\n\n"); return(false);
相關文章
相關標籤/搜索