Skip to content

Instantly share code, notes, and snippets.

@baobao
Created March 19, 2019 10:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save baobao/d6025af094cf18c226533767e652c68a to your computer and use it in GitHub Desktop.
Save baobao/d6025af094cf18c226533767e652c68a to your computer and use it in GitHub Desktop.
#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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment