• Uncategorized

About c++ : How-to-get-intellisense-for-Linux-headers-on-VS2019-Windows

Question Detail

I coding a C++ WiringPi (Linux) project using these libraries:

#include <arpa/inet.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <unistd.h>
#include <signal.h>

I am on Windows and I’m getting a “‘sys/socket.h’: No such file or directory”
error. I know Windows doesn’t have sys/socket.h, arpa/inet.h etc but if I don’t have files I’m getting a lot of unnecessary errors and intellisense isn’t working.

Is it possible to solve this problem?

Question Answer

No answer for now.

You may also like...

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.