error C2146: syntax error : missing ';' before identifier 'FAR'

解决方法:

在 引用处添加

#include <Winsock2.h>
#pragma comment(lib,"Ws2_32.lib")


即可,例如:

#include <Winsock2.h>
#pragma comment(lib,"Ws2_32.lib")
#include <Mswsock.h>
#include <stdio.h>
#include <windows.h>

你可能感兴趣的:(error C2146: syntax error : missing ';' before identifier 'FAR')