Anyone know how to actually use this library?
I took the time to download it and include it with a project.
The problem is, when I try to compile, if I attempt to call any of the library's functions, I get the dreaded linking error: "unresolved symbols".
I'm using Visual Studio Express 2013.
To make this more clear, here's some sample code I've tried (that creates the linker error).
#include "xlsxio_read.h"
int main(void){
xlsxioreader x = xlsxioread_open("input.xlsx");
}
And before anyone asks the standard inane questions, Yes I put the header files and their dll's into the appropriate directories before trying to include or use anything.