Skip to content

Include winsock to enable FrvWriteWav on windows

Rhys Poulton requested to merge rhys.poulton/Frv:include_winsock_lib into master

Currently, building of FrCopy.c on Windows fails due to netinet/in.h not being available. This include is required for the htonl function and the uint32_t/ uint16_t typedefs. These are available on Windows in the winsock (ws2_32) package/ library. So I have included the winsock headers to FrCopy.c and the library linking to the CMakeLists.txt

Merge request reports