yhirose / cpp-httplib

A C++ header-only HTTP/HTTPS server and client library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Getting a list of missing identifiers

chandrianAW opened this issue · comments

image

I have read that it could be an issue of an old version of OpenSSL but I am referencing v3

I guess OpenSSL is not properly installed on your machine. Please check with cd test; make. Hope it helps.

I tried reinstalling many times. I eventually switched to Eclipse and I am not getting the long list of errors but I am getting this:

"..\src\httplib.h:2819:14: error: '::CreateFile2' has not been declared"

Any clue there?

I tried reinstalling many times. I eventually switched to Eclipse and I am not getting the long list of errors but I am getting this:

"..\src\httplib.h:2819:14: error: '::CreateFile2' has not been declared"

Any clue there?

This is the default definition issue for _WIN32_WINNT, which can be resolved by adding a line

#define _WIN32_WINNT 0x0602
#include <Windows.h>