好麻烦

int OnReviceResponse_CameraVideoServer(int connect, const char * buf, int len)
{

        __try
        {
            OnReviceResponse_CameraVideoServer2(connect, buf, len);

        }
        __except(EXCEPTION_EXECUTE_HANDLER){ //EXCEPTION_CONTINUE_EXECUTION

        puts( "in   except ");

        }

        return 0;
}

 

听说 "把结构化异常关了也可以用try/catch (就是关了/EHsc这个编译flag)"

相关文章:

  • 2021-09-10
  • 2021-09-06
  • 2021-12-26
  • 2021-11-17
  • 2022-12-23
  • 2021-10-10
  • 2022-12-23
  • 2022-01-30
猜你喜欢
  • 2022-12-23
  • 2021-12-26
  • 2022-12-23
  • 2022-12-23
  • 2021-06-28
  • 2021-06-28
  • 2021-09-14
相关资源
相似解决方案