summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/CSharpReferenceImport/ImportLibNative.h
blob: 7c85626cfbb1a9c960681ceaca7f534de23c813e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#ifdef ImportLibNative_EXPORTS
#define nativeAPI __declspec(dllexport)
#else
#define nativeAPI __declspec(dllimport)
#endif

class nativeAPI ImportLibNative
{
public:
  static void Message();
};