25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

27 lines
388 B

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <stdio.h>
  3. #include "./hooks.hpp"
  4. Hook h;
  5. int main(int argc, char* argv[]) {
  6. printf("Hello world");
  7. system_shutdown_hook << [] {
  8. printf("Goodbye world\n");
  9. };
  10. h << []{
  11. printf("Hallo1");
  12. };
  13. h << [] {
  14. printf("Hallo2");
  15. };
  16. h << [] {
  17. printf("Hallo3");
  18. };
  19. h();
  20. return 0;
  21. }