#pragma pack (4)
typedef struct outdata
{
float x1,
x2,
x3;
};
extern "C" __declspec(dllexport) void Coord(float, float, float, float, float, int, outdata*);
#include "..\Coord\Header.h"
using namespace std;
__declspec(dllexport) outdata SpiralsCoord(float x1, float x2, float x3, float x4, float x5, int 6)
{
//Код
outdata data;
data.out_x1 = xy1;
data.out_x2 = xy2;
data.out_x3 = xy3;
return data;
}