Running plugins in a sandbox

后端 未结 3 1736
半阙折子戏
半阙折子戏 2021-02-15 16:49

I am designing a system in C/C++ which is extendible with all sort of plugins. There is a well defined C public API which mostly works with (const) char* and other

3条回答
  •  灰色年华
    2021-02-15 17:41

    Have a look at http://msdn.microsoft.com/en-us/library/1deeycx5(v=vs.90).aspx

    I use /EHa in one of my projects to help me catch exceptions from libraries that do stupid things. If you compile your code with this setting a normal try catch block will catch exceptions like devide by zero, etc.

    Not sure if there is some equivalent for this on Linux -- please let me know if there is..

提交回复
热议问题