I have the Xsteam.dll
file that works in all of my LABVIEW projects properly; but now I want use it (Xsteam.dll
) in a simple visual C++ project (in visual studio 2013 or ...).
I dont have any other file related it (such as *.h , *.lib and etc).
I know that the Xsteam.dll written in c/c++ language and I know all of its functions and variable types of their inputs and outputs arg.
I usually use the Xsteam.dll
in LABVIEW at this setting:
library name or path: c:\XSteam.dll
function name: h_pT
thread: run in UI thread
calling convention: stdcall(WINAPI)
function prototype : double h_pT@16(double arg1, double arg2);
return type : Numeric 8-byte double
arg1: Numeric 8-byte double Pass: Value
arg2: Numeric 8-byte double Pass: Value
prototype for these procedures:
MgErr Proc(InstanceDataPtr *instanceState);
How to use Xsteam.dll
by a simple Vc++ program?