Hi, The problem is that I am trying to convert some of my codes from C++ to DLL so they run faster. To do this I started learning how to create DLL files (using VS 2010) and then implement them in Origin C. Unfortunately I get an error that I brought in the subject. The problem is that I am doubtful if it is the problem with the DLL file that I generate using VS or there are something about Origin that I need to figure out! I started with extremely simple code:
#include "stdafx.h" //This header was included in the file VS //generated
int multiple(int t) { int i; i = 2 * t; return i; }