Steven Hoving
Steven Hoving
I think the best way to handle this for now is to limit the camcodec to avi.
CamCodec could theoretically work in MVK, but it doesn't. But I have only tested with VLC.
See 2017 redist https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads
@elcuco Notes how I got this to build with VS2022: **scintilla-code-src\CMakeLists.txt** I noticed that you added `target_link_libraries(scintilla-qt-edit-base pthread)`. pthread is not native to Visual Studio and in this case not...
@retrop we can mimic `noexcept` with `throw()` and I don't think `snprintf` is equal to `_snprintf_s` see: - http://stackoverflow.com/questions/12833241/difference-between-c03-throw-specifier-c11-noexcept - https://github.com/llvm-mirror/libcxx/blob/master/include/support/win32/support.h note: I know that on paper `noexcept != throw()`...
@kingtaurus, there are even more goodies from C++11. If we would move to C++11 as the default, we can loose the pthread dependency. This means that the `vogl_threading_pthreads.h`, `vogl_threading_win32.h` can...