[Tinycc-devel] Is there a way to start writting HTTP application without a hassle?

2020-08-30 Thread Vaidas BoQsc
I tried to search for ways and so far, I found out that winsock is the only way to write a http application. The problem with winsock is that it requires a lot of files from mingw project, and I hate having an overloaded development environment or a learning playground, even if the mingw supposedly

Re: [Tinycc-devel] Is there a way to start writting HTTP application without a hassle?

2020-08-30 Thread Christian Jullien
Hi, You have in mob (win32/include/winapi) all the include files to write simple http applications. I daily use them to implement many network protocols (both client and server). Among them you have: winsock2, h ws2ipdef.h and ws2tcpip.h You must link with ./win32lib/ws2_32.def C. -Origi