I'm trying to compile an Apache HTTP server module. One of the steps involves compiling from source. The problem is that I'm getting
wsgi_memory.obj : error LNK2019: unresolved external symbol GetProcessMemoryInfo
referenced in function get PeakRSS
Then I checked the source for wsgi_memory to check if it was missing some libraries, it currently has the following
#include <windows.h>
#include <stdio.h>
#include <Psapi.h>
#pragma comment(linker, “Psapi.lib”)
I currently have Windows SDK 7.1, should I update something?