does not work because in the 64bit distribution of dislin there is no library disvcm.lib, but only
disvc.lib and disvc_d lib besides discpp.lib. When I add one of the existing libs as described
in the instructions I get the following linker error:
LINK : fatal error LNK1123: error when converting in COFF: file invalid or dammaged.
Does anybody know how to make dislin work with ms visual studio 2010 Express 64 bit?
The code looks like this:
#include "stdafx.h"
#include <dislin.h>
int main()
{
int numberOfPoints=2;
float x[2]= {0, 1};
float y[2] = {0, 2};
metafl("PNG");
qplot(x, y, numberOfPoints);
return 0;
}