baobao
3/19/2019 - 10:50 AM

TestDll.cpp

#include "stdafx.h"
#include <iostream>

// C#からたたかれる関数定義
DllExport void TestInt(const int value) {
	std::cout << value << std::endl;
}

void TestInt(const int value)
{
	std::cout << value << std::endl;
}