1 | // Licensed to the .NET Foundation under one or more agreements. |
---|---|
2 | // The .NET Foundation licenses this file to you under the MIT license. |
3 | // See the LICENSE file in the project root for more information. |
4 | |
5 | #include <platformdefines.h> |
6 | |
7 | extern "C" |
8 | { |
9 | DLL_EXPORT int GetInt32Const() {return 7;} |
10 | DLL_EXPORT __int64 GetInt64Const() {return 7;} |
11 | DLL_EXPORT float GetFloatConst() {return 7.777777f;} |
12 | DLL_EXPORT double GetDoubleConst() {return 7.777777;} |
13 | } |
14 |