cmake/Tests/RunCMake/CSharpReferenceImport/ReferenceImportMixed.cxx
2018-08-09 18:06:22 +02:00

21 lines
395 B
C++

// clang-format off
using namespace System;
#using <ImportLibMixed.dll>
#using <ImportLibPure.dll>
#using <ImportLibSafe.dll>
#using <ImportLibCSharp.dll>
#include "ImportLibNative.h"
int main()
{
Console::WriteLine("ReferenceImportMixed");
ImportLibNative::Message();
ImportLibMixed::Message();
ImportLibPure::Message();
ImportLibSafe::Message();
ImportLibCSharp::Message();
};